Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions episodes/04-code-readability.md
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ def read_json_to_dataframe(input_file):
input_file (file or str): The file object or path to the JSON file.

Returns:
eva_df (pd.DataFrame): The cleaned and sorted data as a dataframe structure
eva_df (pd.DataFrame): The cleaned data as a dataframe structure
"""
print(f'Reading JSON file {input_file}')
# Read the data from a JSON file into a Pandas dataframe
Expand Down Expand Up @@ -995,7 +995,7 @@ def read_json_to_dataframe(input_file):
input_file (file or str): The file object or path to the JSON file.

Returns:
eva_df (pd.DataFrame): The cleaned and sorted data as a dataframe structure
eva_df (pd.DataFrame): The cleaned data as a dataframe structure
"""
print(f'Reading JSON file {input_file}')
# Read the data from a JSON file into a Pandas dataframe
Expand Down
2 changes: 1 addition & 1 deletion episodes/06-code-correctness.md
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ def read_json_to_dataframe(input_file):
input_file (file or str): The file object or path to the JSON file.

Returns:
eva_df (pd.DataFrame): The cleaned and sorted data as a dataframe structure
eva_df (pd.DataFrame): The cleaned data as a dataframe structure
"""
print(f'Reading JSON file {input_file}')
# Read the data from a JSON file into a Pandas dataframe
Expand Down
2 changes: 1 addition & 1 deletion episodes/08-open-collaboration.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def read_json_to_dataframe(input_file):
input_file (file or str): The file object or path to the JSON file.

Returns:
eva_df (pd.DataFrame): The cleaned and sorted data as a dataframe structure
eva_df (pd.DataFrame): The cleaned data as a dataframe structure
"""
print(f'Reading JSON file {input_file}')
# Read the data from a JSON file into a Pandas dataframe
Expand Down
Loading