Page 1 of 1

Mean of the data

Posted: Thu Aug 18, 2022 11:34 am
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

Calculate mean of data in MATLAB

Posted: Thu Aug 18, 2022 11:40 am
by amh
Example:

Code: Select all

data = [ 10 12 9 5 4 13];
y = mean (data)
y = 8.833

Calculate mean using Microsoft Excel

Posted: Fri Aug 19, 2022 6:30 am
by amh
Step 1:
Image

Step 2:
Image

Step 3:
Image

Outliers of the mean

Posted: Mon Dec 04, 2023 1:07 pm
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.