Mean of the data

Statistic stuff
Post Reply
User avatar
amh
Site Admin
Posts: 263
Joined: Thu Jan 06, 2022 12:35 am

Mean of the data

Post by amh »

Purpose:
To calculate the average of the data set by adding all the data and divided by the number of the data
Equation:

Image
User avatar
amh
Site Admin
Posts: 263
Joined: Thu Jan 06, 2022 12:35 am

Calculate mean of data in MATLAB

Post by amh »

Example:

Code: Select all

data = [ 10 12 9 5 4 13];
y = mean (data)
y = 8.833
User avatar
amh
Site Admin
Posts: 263
Joined: Thu Jan 06, 2022 12:35 am

Calculate mean using Microsoft Excel

Post by amh »

Step 1:
Image

Step 2:
Image

Step 3:
Image
User avatar
amh
Site Admin
Posts: 263
Joined: Thu Jan 06, 2022 12:35 am

Outliers of the mean

Post by amh »

Outliers are the data with large differences to the majority values in the dataset. It can result significant effect to the mean of dataset as it dragging away from the mean of majority values.
Post Reply