Skip to content

Commit

Permalink
Small clean up in sensitivity_analyze_results.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jannisteunissen committed Oct 13, 2023
1 parent 7c8f0a7 commit 61d97b4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tools/sensitivity_analyze_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# - Have option to read in chemistry output (species amounts)

import numpy as np
import matplotlib.pyplot as plt
import argparse
import pandas as pd

Expand All @@ -15,9 +14,9 @@
parser.add_argument('logs', type=str, nargs='+',
help='Log files')
parser.add_argument('-y', type=str, nargs='+', default=["sum(n_e)"],
help='y variable of the files to analyse')
help='Variables in the log files to compare')
parser.add_argument('-time_index', type=int, default=-1,
help='Which time index to consider')
help='Which time index in the log files to consider')
args = parser.parse_args()

logs = sorted(args.logs)
Expand Down

0 comments on commit 61d97b4

Please sign in to comment.