Questions

1 Marks Each

🎯

Test yourself on this topic

8 questions · timed · auto-graded

Question 31 Mark
What is variance?
Answer
It measures how far a data set is spread out. It is mathematically defined as the average of the squared differences from the mean.
View full question & answer
Question 51 Mark
What is the purpose of pandas.DataFrame.mean()?
Answer
pandas.DataFrame.mean(). This function returns the average i.e. Arithmetic mean of the values for the given axis.
View full question & answer
Question 61 Mark
Define GroupBy in Pandas.
Answer
In Pandas, groupby() function allows us to rearrange the data by utilizing them on real-world data sets. Its primary task is to split the data into various groups. These groups are categorized based on some criteria. The objects can be divided from any of their axes.
View full question & answer
Question 71 Mark
What is the use of describe function?
Answer
It is a very useful summarisation tool that will quickly display statistics like mean, median, standard deviation etc.
View full question & answer
Question 81 Mark
Write the statement to read the csv file, name of the file Naveen.csv.
Answer
import pandas as pd

df=pd.read_csv

View full question & answer