Skip to content

Instantly share code, notes, and snippets.

@Bookoff
Last active August 29, 2015 14:15
Show Gist options
  • Save Bookoff/9145becaf1111313a70f to your computer and use it in GitHub Desktop.
Save Bookoff/9145becaf1111313a70f to your computer and use it in GitHub Desktop.
ImportData
import pandas as pd
# Чтение данных локально
df = pd.read_csv('ZenZine/python/started/sample_data.csv')
# Чтение данных из веба
data_url = "https://github.com/Bookoff/ZenZine/raw/master/python/started/sample_data.csv"
df = pd.read_csv(data_url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment