Tutorials References Exercises Videos Menu
Paid Courses Website NEW Pro NEW

Statistics Tutorial

[+:

Welcome to this introductory course in Statistics.

This course serves as an excellent primer to Data Analytics.

Learn Statistics

We have created 36 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 »