064. Extra Help

064. Extra Help

9th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

061. Extra Help

061. Extra Help

9th - 12th Grade

5 Qs

Data Science I

Data Science I

12th Grade

10 Qs

csv and DataFrame

csv and DataFrame

12th Grade

10 Qs

แบบทดสอบหลังเรียนบทที่ 2 สร้างสรรค์ผลงานด้วยภาษาไพทอน

แบบทดสอบหลังเรียนบทที่ 2 สร้างสรรค์ผลงานด้วยภาษาไพทอน

9th Grade

10 Qs

โมดูล pandas และการอ่านไฟล์ CSV

โมดูล pandas และการอ่านไฟล์ CSV

9th Grade

10 Qs

Arrays & Data frames

Arrays & Data frames

9th Grade

10 Qs

A1 IIIB - Introducción a Data Science

A1 IIIB - Introducción a Data Science

11th Grade - University

10 Qs

Pandas

Pandas

12th Grade

10 Qs

064. Extra Help

064. Extra Help

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Robert Giordano

FREE Resource

6 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which 2 modules do you need for this assignment?

pandas

math

matplotlib

random

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Fill in the blank to create a data frame from the CSV file

import pandas as pd

file = "Dogs.CSV"

df = pd.________(file)

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Fill in the blank to create a data frame from the XLSX file

import pandas as pd

file = "Dogs.XLSX"

df = pd.________(file)

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Fill in the blank to turn the column from the data frame into a list

import pandas as pd

df = read_csv("Dogs.csv")

column = df["Minimum Weight"]

colList = column._______( )

5.

MATCH QUESTION

1 min • 1 pt

Media Image

Match the method of creating a graph to each type of chart with data from a data frame read from a CSV

histogram

df[weight].plot( )

line

df.plot(kind='scatter', x=weight, y=height)

scatter plot

df[weight].plot(kind='hist')

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To create a bar or pie chart which of the following do you need to do with the data in the list?

Convert the list to a set to get the unique values, then convert it back to a list and then create a parallel list to perform a frequency analysis.

Do a frequency analysis and then make the frequencies a list