Google News
logo
Pandas - Interview Questions
List some statistical functions in Python Pandas?
Some of the statistical functions in Python Pandas are :
 
sum() : it returns the sum of the values.
 
mean() : returns the mean that is the average of the values.
 
std() : returns the standard deviation of the numerical columns.
 
min() : returns the minimum value.
 
max() : returns the maximum value.
 
abs() : returns the absolute value.
 
prod() : returns the product of the values.
Advertisement