You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometime, user may need or want to parse file to analyzer by themselves
you can set parse=False like this example:(unzip first, then run_analysis_locally.py) Analysis_local.zip.txt
example parse csv in map:
def map(self, data, simulation):
# retrieve sim data
s = str(data[self.filenames[0]], 'utf-8')
from io import StringIO
csv_data = pd.read_csv(StringIO(s), header=None)
df_all = self.retrieve_total_cases(csv_data, simulation, self.start_time, self.end_time)
return df_all
Sometime, user may need or want to parse file to analyzer by themselves
you can set parse=False like this example:(unzip first, then run_analysis_locally.py)
Analysis_local.zip.txt
example parse csv in map:
example to call analyzermanager with parse=False:
The text was updated successfully, but these errors were encountered: