Skip to content

Instantly share code, notes, and snippets.

@smzn
Created January 4, 2024 01:38
Show Gist options
  • Save smzn/9988aff6f2b5cef4b8d2c2de2b8e47da to your computer and use it in GitHub Desktop.
Save smzn/9988aff6f2b5cef4b8d2c2de2b8e47da to your computer and use it in GitHub Desktop.
202311-divvy-tripdata.csv
import pandas as pd
# Load the new CSV file
file_path_tripdata = '202311-divvy-tripdata.csv'
divvy_tripdata = pd.read_csv(file_path_tripdata)
# Display the first few rows of the dataframe to understand its structure and content
divvy_tripdata
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment