marksaroufim commited on
Commit
3d84e4a
·
1 Parent(s): 087591e
Files changed (1) hide show
  1. viz.py +10 -0
viz.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+
3
+ # Load the Parquet file
4
+ df = pd.read_parquet('output_dataset.parquet')
5
+
6
+ # Display the first few rows of the dataframe
7
+ print(df.head())
8
+
9
+ # Basic statistics for numerical columns
10
+ print(df.describe())