Difference between revisions of "Descriptive statistics"

From Sustainability Methods
Line 11: Line 11:
  
 
====Median====
 
====Median====
The median is the middle number in assorted set of numbers. It can be substantially different from the mean value for instance, when you have large gaps or cover wide ranges within your data. Therefore, it is more robust against outliers.
+
The median is the middle number in a sorted set of numbers. It can be substantially different from the mean value, for instance when you have large gaps or cover wide ranges within your data. Therefore, it is more robust against outliers.
  
 
====Mode====
 
====Mode====

Revision as of 09:38, 8 April 2021

Basics of descriptive statistics

Descriptive Statistics is the most basic things you can do in statistics. Most of you probably also already calculated things like mean and median in school.

Descriptive stats are what most people think stats are all about. Many people believe that the simple observation of more or less, or the mere calculation of an average value is what statistics are all about. The media often shows us such descriptive statistics in whimsical bar plots or even pie charts.

This graphic visualizes what mean, mode and median explain regarding a dataset.

Mean

The mean is the average of numbers you can simply calculate by adding up all the numbers and then divide them by how many numbers there are in total.

Median

The median is the middle number in a sorted set of numbers. It can be substantially different from the mean value, for instance when you have large gaps or cover wide ranges within your data. Therefore, it is more robust against outliers.

Mode

The mode is the value that appears most often. It can be helpful in large datasets are when you have a lot of repetitions within the dataset.


Range

The range is simply the difference between the lowest and the highest value and consequently it can also be calculated like this.


Standard deviation

This graph shows how the standard deviation is spread from the mean.

The standard deviation is calculated as the square root of variance by determining the variation between each data point relative to the mean. It is a measure of how spread out your numbers are. If the data points are further from the mean, there is a higher deviation within the data set. The higher the standard deviation, the more spread out the data.


R examples

#descriptive statistics using the Swiss dataset
swiss
swiss_data<-swiss

#we are choosing the column fertility for this example
#let's begin with calculating the mean
mean(swiss_data$Fertility)

#median
median(swiss_data$Fertility)

#range
range(swiss_data$Fertility)

#standard deviation
sd(swiss_data$Fertility)

#summary - includes minimum, maximum, mean, median, 1st & 3rd Quartile
summary(swiss_data$Fertility)


External Links

Videos

Articles