elcc / util /analysis /__main__.py
bboldt's picture
Initial public commit
a5f760c
raw
history blame contribute delete
270 Bytes
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()