Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
linozen committed Dec 14, 2021
1 parent 6ac6b18 commit 21ba64c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
Binary file not shown.
2 changes: 1 addition & 1 deletion explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def answered_by(group):
# Import data from stored pickle
# ===========================================================================

df = pd.read_pickle("data/guarding_survey.pkl.pkl")
df = pd.read_pickle("data/guarding_survey.pkl")

# ===========================================================================
# General configuration
Expand Down
6 changes: 3 additions & 3 deletions scripts/clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -1352,6 +1352,6 @@ def construct_ms_df():
# Export data to file
# ===========================================================================

df.to_pickle("data/guarding_survey.pkl")
df.to_excel("data/guarding_survey.xlsx")
df.to_csv("data/guarding_survey.csv")
df.to_pickle("data/guardint_survey.pkl")
df.to_excel("data/guardint_survey.xlsx")
df.to_csv("data/guardint_survey.csv")

0 comments on commit 21ba64c

Please sign in to comment.