Curriculum
Course: Data Science
Login

Curriculum

Data Science

Text lesson

Stat Introduction

Introduction to Statistics

Statistics is the science of analyzing data.

Once we have built a prediction model, it’s crucial to evaluate its reliability.

After all, a prediction is only valuable if it can be trusted.

Descriptive Statistics

We will begin with basic descriptive statistics.

Descriptive statistics summarize key features of a data set, including:

  • Count
  • Sum
  • Standard Deviation
  • Percentile
  • Average
  • And more…

This is a great starting point to understand the data better.

In Python, we can use the describe() function to summarize the data.

Example

print (full_health_data.describe())

Output:

img_stat_describe