AIM-PIbd-32-Katysheva-N-E/lab_1/lab1.ipynb
2024-09-13 21:24:33 +04:00

1.2 KiB

Начало лабораборной

Выгрузка данных из csv файла в датафрейм

In [2]:
import pandas as pd

df = pd.read_csv(".//static//csv//StudentsPerformance.csv")
print (df.columns)
Index(['gender', 'race/ethnicity', 'parental level of education', 'lunch',
       'test preparation course', 'math score', 'reading score',
       'writing score'],
      dtype='object')