Skip to content

Commit

Permalink
more specific path to save output
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Feb 10, 2022
1 parent 631e9dd commit d2ca745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_examples/run_ogcore_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def main():
print("total time was ", (time.time() - run_start_time))
print('Percentage changes in aggregates:', ans)
# save percentage change output to csv file
ans.to_csv('ogcore_example_output.csv')
ans.to_csv(os.path.join(CUR_DIR, 'ogcore_example_output.csv'))
client.close()


Expand Down

0 comments on commit d2ca745

Please sign in to comment.