Tutorials References Menu

Statistics Tutorial

[+:

Welcome to this introductory course in Statistics.

This course serves as an excellent primer to Data Analytics.

Learning by Reading

We have created 26 tutorial pages for you to learn more about some of the most important concepts in Statistics.


Learning by Examples

In our "Try it Yourself" editor, you can use Python modules and R code, and modify the code to see the result.

Example

With Python use the NumPy library mean() method to find the mean of the values 4,11,7,14:

import numpy

values = [4,11,7,14]

x = numpy.mean(values)

print(x)
Try it Yourself »