diff options
author | Ta180m | 2020-04-29 17:07:28 -0500 |
---|---|---|
committer | Ta180m | 2020-04-29 17:07:28 -0500 |
commit | e2b184de35e6a82755455425127419da06556a96 (patch) | |
tree | 50e4a67f6fdf0cb66564c5a130b5398ea8de4f90 /solver2.py | |
parent | 89400085a70cb28562abe93a2bb2445bd912692f (diff) |
tried to fix some things, script is still broken
Diffstat (limited to 'solver2.py')
-rw-r--r-- | solver2.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ class Learner(object): if args.end != None: confirmed_sums = np.sum([reg.loc[args.start:args.end].values for reg in country_df.iloc], axis = 0) else: - confirmed_sums = np.sum([reg.loc[[args.start:]].values for reg in country_df.iloc], axis = 0) + confirmed_sums = np.sum([reg.loc[args.start:].values for reg in country_df.iloc], axis = 0) if args.end != None: new_data = pd.DataFrame(confirmed_sums, country_df.iloc[0].loc[args.start:args.end].index.tolist()) |