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()) | |
# | |