untitled

untitled

University

9 Qs

quiz-placeholder

Similar activities

Libreria pandas

Libreria pandas

University

12 Qs

PEKERTI_Rahmania Azwarini

PEKERTI_Rahmania Azwarini

University

6 Qs

DAP391m

DAP391m

University

4 Qs

Bai kiem tra tin hoc

Bai kiem tra tin hoc

University

10 Qs

 kiểm tra môn Tin học

kiểm tra môn Tin học

University

10 Qs

Python Quiz - 2.6

Python Quiz - 2.6

University

12 Qs

A4 IIIB - EDA con Pandas

A4 IIIB - EDA con Pandas

10th Grade - University

10 Qs

Studjam ML 1

Studjam ML 1

University

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