The document describes statistical functions that can be performed on columns of data including computing the sum, minimum, maximum, mean, size, standard deviation, variance, standard error and generating descriptive statistics as well as computing the first, last and count of values in groups.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
9 views
Aggregate Functions in Python (Pandas)
The document describes statistical functions that can be performed on columns of data including computing the sum, minimum, maximum, mean, size, standard deviation, variance, standard error and generating descriptive statistics as well as computing the first, last and count of values in groups.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1
function Description:
sum() :Compute sum of column values
min() :Compute min of column values max() :Compute max of column values mean() :Compute mean of column size() :Compute column sizes describe() :Generates descriptive statistics first() :Compute first of group values last() :Compute last of group values count() :Compute count of column values std() :Standard deviation of column var() :Compute variance of column sem() :Standard error of the mean of column