File size: 270 Bytes
a5f760c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from . import run
import sys


if __name__ == "__main__":
    if len(sys.argv) > 1:
        # Recommend running this with -i
        df = run.pd.read_csv(sys.argv[1])
        df.set_index("name", inplace=True)
        run.generate_plots(df)
    else:
        run.main()