This file contains 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
# Первые несколько строк данных | |
print df.head() | |
# ВЫВОД | |
# Alpha Beta Gamma Tetta Zeta | |
# 0 1243 2934 148 3300 10553 | |
# 1 4158 9235 4287 8063 35257 | |
# 2 1787 1922 1955 1074 4544 | |
# 3 17152 14501 3536 19607 31687 |
This file contains 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 | |
# Чтение данных локально | |
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) |
NewerOlder