Conteúdo do Curso
Analyzing and Visualizing Real-World Data
Analyzing and Visualizing Real-World Data
Loading the Data
Welcome to the course! Here, you will work with the sales data from 45 stores of a retail chain. Let's begin by loading and previewing the data.
Note
Remember to load the CSV file, use the
.read_csv()
method from thepandas
library.
# Loading the library import pandas as pd # Reading the data df = pd.read_csv('https://codefinity-content-media.s3.eu-west-1.amazonaws.com/72be5dde-f3e6-4c40-8881-e1d97ae31287/shops_data_init.csv') # Viewing the data print(df)
For the following questions, feel free to edit the code above if necessary.
Obrigado pelo seu feedback!