diff --git a/episodes/04-code-readability.md b/episodes/04-code-readability.md index f417c3ca9..53d04b2e2 100644 --- a/episodes/04-code-readability.md +++ b/episodes/04-code-readability.md @@ -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 @@ -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 diff --git a/episodes/06-code-correctness.md b/episodes/06-code-correctness.md index 32ba95bb0..227ab6b5d 100644 --- a/episodes/06-code-correctness.md +++ b/episodes/06-code-correctness.md @@ -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 diff --git a/episodes/08-open-collaboration.md b/episodes/08-open-collaboration.md index 08a7cbb04..0b8dcd1c8 100644 --- a/episodes/08-open-collaboration.md +++ b/episodes/08-open-collaboration.md @@ -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