064. Extra Help

064. Extra Help

9th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

Python Pandas (ai gen)

Python Pandas (ai gen)

12th Grade

10 Qs

A3 IIIB - Básicas de EDA

A3 IIIB - Básicas de EDA

11th Grade - University

10 Qs

advanced storage techniques ( arrays , DataFrame)

advanced storage techniques ( arrays , DataFrame)

9th - 10th Grade

9 Qs

Python Pandas

Python Pandas

11th - 12th Grade

10 Qs

Ciência de Dados - Importando dados

Ciência de Dados - Importando dados

12th Grade

10 Qs

Quiz sobre Desenvolvimento de Sistemas

Quiz sobre Desenvolvimento de Sistemas

12th Grade

10 Qs

pandas

pandas

9th Grade - University

8 Qs

Test#1

Test#1

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

line

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

scatter plot

df[weight].plot( )

histogram

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

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