xdz / viz.py
marksaroufim's picture
yolo
a8d95cd
raw
history blame contribute delete
No virus
394 Bytes
import pandas as pd
# pd.set_option('display.max_columns', None) # None means no limit
# pd.set_option('display.width', None) # None means use the current terminal width
# Load the Parquet file
df = pd.read_parquet('output_dataset.parquet')
print(df.columns)
# Display the first few rows of the dataframe
print(df)
# Basic statistics for numerical columns
# print(df.describe())
#