0Pricing
R Academy · Lesson

Descriptive Statistics

Use R’s built-in functions to measure central tendencies and variability in datasets.

1

Introduction to Descriptive Statistics

Descriptive statistics summarize and describe features of a dataset. They provide insights into the data distribution and variability.

Descriptive Statistics — illustration 1

2

Calculating Mean

The mean (average) is calculated using the mean() function.

data <- c(10, 20, 30, 40, 50)
mean(data)

All lessons in this course

  1. Descriptive Statistics
  2. Probability Distributions
  3. Hypothesis Testing
← Back to R Academy