Skip to content

Commit ebb4a99

Browse files
committed
Add FastAPI app with Docker, CI/CD, and linter
1 parent 29ae648 commit ebb4a99

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/load.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,15 @@ def load_data_csv(path):
1818
def summary_stats(df):
1919
"""Print basic info and stats"""
2020
print(df.info())
21-
print("\n--- Describe Numerical ---\n", df.describe())
21+
print(
22+
"\n--- Describe Numerical ---\n",
23+
df.describe()
24+
)
2225
print("\n--- Describe Categorical ---\n")
2326
print(df.select_dtypes(include='object').describe())
2427

2528

29+
2630
def logarithmic_numerical_distribution(
2731
df,
2832
columns=None,

0 commit comments

Comments
 (0)