Skip to content

Instantly share code, notes, and snippets.

@ivanzvonkov
Last active September 17, 2020 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivanzvonkov/e73dba4e54bdafd8d5e8e6a26e4c7812 to your computer and use it in GitHub Desktop.
Save ivanzvonkov/e73dba4e54bdafd8d5e8e6a26e4c7812 to your computer and use it in GitHub Desktop.
from google.colab import drive
import pandas as pd
# Make Google Drive available inside noteboook
drive.mount('/content/gdrive')
# Path containing all data used in the project
root_path = '/content/gdrive/My Drive/Shared-Data/'
# Path of specific notebook needed for this notebook
path = root_path + 'Station-Inventory.csv.gz'
# Read in gzip file as pandas dataframe
weather_stations = pd.read_csv(path)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment