Lesson 2 : Importing a Dataset using Pandas

Описание к видео Lesson 2 : Importing a Dataset using Pandas

In the CONSOLE section of Spyder Install Pandas using below command

conda install pandas

--------------------------------------------------------------------------
How to Import a Dataset to Spyder IDE - use below code

import pandas as pd

data = pd.read_csv('dataset.csv') # The Root Dircetory is .spyder-py3 - use save as to find the location to place the exact dataset)#

print(data.head())

-----------------------------------------------------------------------------

Комментарии

Информация по комментариям в разработке