untitled

untitled

University

9 Qs

quiz-placeholder

Similar activities

Graficas con matlab y pandas

Graficas con matlab y pandas

University

10 Qs

Pandas DataFrame Quiz

Pandas DataFrame Quiz

University

10 Qs

DataFrame Revision

DataFrame Revision

11th Grade - University

10 Qs

NumpyPandas

NumpyPandas

University

10 Qs

23S1 1906

23S1 1906

University

11 Qs

A1 IIIB - Introducción a Data Science

A1 IIIB - Introducción a Data Science

11th Grade - University

10 Qs

X-Quiz #8

X-Quiz #8

University

13 Qs

DP-100 Day 4

DP-100 Day 4

University - Professional Development

10 Qs

untitled

untitled

Assessment

Quiz

Computers

University

Hard

Created by

Shannon Jones

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which package should be needed for series

Maths

Statistic

Pandas

Random

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Series can be created from

Array

Dictionary

Scatter value

All of them

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Full form of CSV file is

Comma Separated Vault

Comma Separated Value

Common Separated Value

Common System Value

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

which functions used to transfer data from dataframe to CSV files

to_data()

to_csv()

df_csv()

from_dataframe()

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Dataframe can contain multiple series

True

False

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Pandas deals with following data structures

Series

Series and Data Frames

Series, DataFrames and Panel

None of Above

7.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

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

8.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following object you get after reading CSV file?

a) DataFrame

b) Character Vector

c) Panel

d) All of the mentioned

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the correct Pandas syntax to read in a csv file and assign it to a DataFrame df?

df = read_csv('file.csv')

df = read('file.csv', type = 'csv')

df = pd.read_csv('file.csv')

df = with open('file.csv') as pd.DataFrame