Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Data Types | Preprocessing Data: Part I
Analyzing and Visualizing Real-World Data

bookData Types

Great! The dataset appears to be large enough, with 6435 rows and 8 columns. Let's check the data types of the columns in the df dataframe.

12345678
# 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') # Checking columns types print(df.dtypes)
copy

For the following question, feel free to edit the code above if necessary.

question mark

Which of the following data types are present in the df dataframe?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 1. ChapterΒ 2

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

Awesome!

Completion rate improved to 3.45

bookData Types

Swipe to show menu

Great! The dataset appears to be large enough, with 6435 rows and 8 columns. Let's check the data types of the columns in the df dataframe.

12345678
# 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') # Checking columns types print(df.dtypes)
copy

For the following question, feel free to edit the code above if necessary.

question mark

Which of the following data types are present in the df dataframe?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 1. ChapterΒ 2
some-alt