-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1314e0d
commit 3eeab5e
Showing
2 changed files
with
18 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
import pandas as pd | ||
from ydata_profiling import ProfileReport | ||
|
||
from ydata_profiling import ProfileReport | ||
|
||
if __name__ == '__main__': | ||
if __name__ == "__main__": | ||
import numpy as np | ||
|
||
df = pd.read_csv("c6cb4c3d-e735-4b55-bd5c-b7c78ab152aa.csv", sep=',', encoding = "latin") | ||
#df['empty_col'] = [None]*len(df) | ||
df = pd.read_csv( | ||
"c6cb4c3d-e735-4b55-bd5c-b7c78ab152aa.csv", sep=",", encoding="latin" | ||
) | ||
# df['empty_col'] = [None]*len(df) | ||
|
||
df.sample(10000) | ||
|
||
df.to_csv('Validation.csv') | ||
|
||
|
||
#df.to_csv('teste.csv') | ||
df.to_csv("Validation.csv") | ||
|
||
report = ProfileReport(df, title='Testing the null values') | ||
report.to_file('report.html') | ||
# df.to_csv('teste.csv') | ||
|
||
report = ProfileReport(df, title="Testing the null values") | ||
report.to_file("report.html") |