Intro Pandas

Intro Pandas

8th Grade

5 Qs

quiz-placeholder

Similar activities

DM 2.4 Puzzle Cube Design Vocabulary

DM 2.4 Puzzle Cube Design Vocabulary

6th - 8th Grade

6 Qs

Berfikir Komputasional Pretest

Berfikir Komputasional Pretest

8th Grade

5 Qs

Your AI Questions Answered

Your AI Questions Answered

8th Grade

10 Qs

Intro Pandas

Intro Pandas

Assessment

Quiz

Engineering

8th Grade

Hard

Created by

PETCHARAT SURIYACHAI

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

โครงสร้างข้อมูลหลักใน Pandas ที่ใช้สำหรับจัดเก็บและจัดการข้อมูลคือข้อใด (What is the primary data structure in Pandas that is used to store and manipulate data?)

Array
List
DataFrame
Dictionary

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

ฟังก์ชันใน Pandas ที่ใช้สำหรับโหลดไฟล์ CSV เข้าไปใน DataFrame คือ (Which Pandas function is used to load a CSV file into a DataFrame?)

pd.load_csv()
pd.read_csv()
pd.open_csv()
pd.import_csv()

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

เมธอดที่ใช้แสดงแถวแรก ๆ ของ DataFrame คือข้อใด (Which method is used to display the first few rows of a DataFrame?)

df.head()
df.first()
df.show()
df.top()

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

ฟังก์ชันที่ใช้สำหรับคำนวณสถิติสรุปสำหรับคอลัมน์ตัวเลขใน DataFrame คือ (Which function is used to calculate summary statistics for numerical columns in a DataFrame?)

df.summary()
df.statistics()
describe()
summary_stats()

5.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

วิธีที่ดีที่สุดในการนำเข้าโมดูล Pandas ในโปรแกรมคือข้อใด (Which is the best way to import the pandas module in your program ?)

1.import pandas

2.import pandas as pd

3.from pandas import *

4.All of the above