# This file contains some useful commands to get basic info about the dataframe dataset.head() # see first n columns (def: 5) dataset.info() # get column data tyype info # Get the type and dims: print("Data type : ", type(dataset)) print("Data dims : ", dataset.shape)