File size: 394 Bytes
3d84e4a 05a6587 3d84e4a b010c7c 3d84e4a a8d95cd c7ad8d9 3d84e4a b010c7c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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())
#
|