Created
November 14, 2022 04:54
-
-
Save PratyushTripathy/c37b2d4f5b0c1a792e8ea2ad089ecc12 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
# define the link to the CSV file on Microsoft's GitHub repo | |
csv_path = r'https://raw.githubusercontent.com/microsoft/GlobalMLBuildingFootprints/main/dataset-links.csv' | |
# read the file | |
df = pd.read_csv(csv_path) | |
# check basic details | |
print('Columns in CSV:', df.columns) | |
print('Shape of table:', df.shape) | |
print(df.head()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment