Skip to content

Commit

Permalink
fix(doc): fix package name has been used
Browse files Browse the repository at this point in the history
  • Loading branch information
MCatherine1994 committed Jan 30, 2025
1 parent fcfc6fd commit ea8ec39
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"source": [
"# Example usage\n",
"\n",
"Here we will demonstrate how to effectively use the `pyeda` package to validate the format of data files and conduct basic exploratory data analysis. The steps include checking data file format, identifying missing values, and generating a summary of the data.\n",
"Here we will demonstrate how to effectively use the `pyeda31` package to validate the format of data files and conduct basic exploratory data analysis. The steps include checking data file format, identifying missing values, and generating a summary of the data.\n",
"\n",
"## Imports"
]
Expand Down Expand Up @@ -344,7 +344,7 @@
"source": [
"## Conclusion\n",
"\n",
"The `pyeda` package offers a user-friendly and efficient solution for validating data files and performing essential exploratory data analysis tasks. From checking file formats and identifying missing values to generating data statistics summaries, this tool simplifies the preprocessing stage, allowing you to focus on extracting deeper insights and making informed decisions. Try it out with your own dataset and experience its ease of use!"
"The `pyeda31` package offers a user-friendly and efficient solution for validating data files and performing essential exploratory data analysis tasks. From checking file formats and identifying missing values to generating data statistics summaries, this tool simplifies the preprocessing stage, allowing you to focus on extracting deeper insights and making informed decisions. Try it out with your own dataset and experience its ease of use!"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion src/pyeda31/check_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def check_csv(file_path):
Examples
--------
>>> from pyeda.check_csv import check_csv
>>> from pyeda31.check_csv import check_csv
>>> check_csv("../data/raw/data.csv")
"""
# Check if file extension is .csv
Expand Down
2 changes: 1 addition & 1 deletion src/pyeda31/data_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_summary_statistics(df, col = None):
Examples
--------
>>> from pyeda.data_summary import get_summary_statistics
>>> from pyeda31.data_summary import get_summary_statistics
>>> get_summary_statistics(df)
"""
if col is None:
Expand Down
2 changes: 1 addition & 1 deletion src/pyeda31/pymissing_values_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def missing_values_summary(df):
Examples
--------
>>> from pyeda.pymissing_value import missing_values_summary
>>> from pyeda31.pymissing_value import missing_values_summary
>>> missing_values_summary(df)
"""
# Calculate the count of missing values for each column
Expand Down

0 comments on commit ea8ec39

Please sign in to comment.