mirror of
https://github.com/koodiklinikka/palkkakysely.git
synced 2026-02-10 17:51:21 +00:00
Add pandas-profiling report
This commit is contained in:
12
generate_profiling.py
Normal file
12
generate_profiling.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from data_ingest import read_data
|
||||
from pandas_profiling import ProfileReport
|
||||
|
||||
|
||||
def main():
|
||||
df = read_data()
|
||||
profile = ProfileReport(df)
|
||||
profile.to_file("out/profiling_report.html")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user