Skip to content

Commit 9ba3c23

Browse files
committed
Changed ordering to keep with consistency
1 parent 2e91a98 commit 9ba3c23

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ $ pip install -i https://test.pypi.org/simple/ eda_utils_py
1515
## Functions
1616

1717
The four functions contained in this package are as follows:
18-
- `cor_map`: A function to plot a correlation matrix of numeric columns in the dataframe
18+
- `imputer`: A function to impute missing values
1919
- `outlier_identifier`: A function to identify and deal with outliers
20+
- `cor_map`: A function to plot a correlation matrix of numeric columns in the dataframe
2021
- `scale` A function to scale numerical values in the dataset
21-
- `imputer`: A function to impute missing values
2222

2323

2424
## Our Place in the Python Ecosystem
@@ -81,7 +81,7 @@ Output of `imputer()`:
8181
```python
8282
outlier_identifier(data_with_outlier, method = "median")
8383
```
84-
Output `outlier_identifier()`:
84+
Output of `outlier_identifier()`:
8585

8686
![outlier_output](images/outlier_output.png)
8787

@@ -105,7 +105,7 @@ numerical_columns = ['SepalLengthCm','SepalWidthCm','PetalWidthCm']
105105
scale(data, numerical_columns, scaler="minmax")
106106

107107
```
108-
Output `scale()`:
108+
Output of `scale()`:
109109

110110
![scale_output](images/scale_output.png)
111111

0 commit comments

Comments
 (0)