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

1.2 KiB

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

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

In [3]:
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')