Statistics Tutorial
Learn Statistics
Welcome to this introductory course in Statistics.
This course serves as an excellent primer to Data Analytics.
Learning by Reading
We have created 36 tutorial pages for you to learn more about some of the most important concepts in Statistics.
Basic Concepts
IntroductionLearning 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 »
Track Your Progress
Create a free W3Schools account and get access to more features and learning materials:
View your completed tutorials, exercises, and quizzes
Keep an eye on your progress and daily streaks
Set goals and create learning paths
Create your own personal website
Note: This is an optional feature. You can study at W3Schools without creating an account.