Choose a topic to test your knowledge and improve your Panda skills
Which of the following are modules/libraries in Python?
Important data structure of pandas is/are ____
Which of the following library in Python is used for plotting graphs and visualization.
_____ is used when data is in Tabular Format.
Which of the following command is used to install pandas?
Which of the following statement is wrong?
The data label associated with a particular value of Series is called its ______________
Write the output of the following : >>> import pandas as pd >>> series1 = pd.Series([10,20,30]) >>> print(series1)
How many values will be there in array1, if given code is not returning any error? >>> series4 = pd.Series(array1, index = [βJanβ, βFebβ, βMarβ, βAprβ])
When we create a series from dictionary then the keys of dictionary become ______________
Write the output of the following : >>> S1=pd.Series(14, index = ['a', 'b', 'c']) >>> print(S1)
Which of the following statement is correct for importing pandas in python?
Python libraries contain a collection of built-in ___________
columns b. index c. dtypes d. values
Which of the following is used to display first 2 rows of DataFrame βDFβ?
Following statement will display ___________ rows from DataFrame βDF1β. >>> DF1.head()
Which property of dataframe is used to check that dataframe is empty or not?
Write the output of the statement >>>df.size , if df has the following structure: Name Class Rollno 0 Amit 6 1 1 Anil 7 2 2 Ravi 8 3
Parameters of read_csv( ) function is _____
Which of the following function is used to load the data from the CSV file into a DataFrame?
The default value for sep parameter is ___
Write statement to display the row labels of βDFβ.
Display first row of dataframe βDFβ
Display last two rows from dataframe βDF
Write statement to transpose dataframe DF.
Write statement to display first two columns of dataframe βDFβ.
Display last two rows from dataframe βDFβ
Write statement to display the data types of each column of dataframe βDFβ
Write statement to display the dimension of dataframe βDFβ.
Write statement to display the shape of dataframe βDFβ.