Wolfram Function Repository
Instant-use add-on functions for the Wolfram Language
Function Repository Resource:
Compute the population variance for a set of data
ResourceFunction["PopulationVariance"][{x1,x2,…}] gives the population variance of the given data. |
Compute the population variance of a list:
In[1]:= |
Out[1]= |
Compute the population variance of a different list:
In[2]:= |
Out[2]= |
Compute the population variance of another list:
In[3]:= |
Out[4]= |
Compare with the known expression for population variance as the average square difference to the mean:
In[5]:= |
Out[5]= |
PopulationVariance works on both numeric and symbolic input:
In[6]:= |
Out[6]= |
The population variance of a data set differs from its sample variance calculated with Variance due to Bessel's correction:
In[7]:= |
Out[7]= |
The fractional effect of this correction tends to be smaller for larger sample sizes:
In[8]:= |
Out[8]= |
PopulationVariance[…] is equivalent to ResourceFunction["PopulationStandardDeviation"][…]2:
In[9]:= |
Out[9]= |
In[10]:= |
Out[10]= |
In[11]:= |
Out[11]= |
This work is licensed under a Creative Commons Attribution 4.0 International License