gstd

Standard deviation of a grouped sample.
469 Downloads
Aktualisiert 26. Sep 2012

Lizenz anzeigen

In some scientific works, once the data have been gathered from a population of interest, it is often difficult to get a sense of what the data indicate when they are presented in an unorganized fashion.

Assembling the raw data into a meaningful form, such as a frequency distribution, makes the data easier to understand and interpret. It is in the context of frequency distributions that the importance of conveying in a succinct way numerical information contained in the data is encountered.

So, grouped data is data that has been organized into groups known as classes. The raw dataset can be organized by constructing a table showing the frequency distribution of the variable (whose values are given in the raw dataset). Such a frequency table is often referred to as grouped data.

Here, we developed a m-code to calculate the standard deviation of a grouped data.

One can input the returns or modified vectors n and xout containing the frequency counts and the bin locations of the hist m-function, in a column form matrix.

Normalizes Y by (N-1), where N is the sample size. This is an unbiased estimator of the standard deviation of the population from which X is drawn. Y = STD(X,1) normalizes by N and produces the square root of the second moment of the sample about its mean. STD(X,0) is the same as STD(X).

Variance calculation uses the formula,

S = SQRT(Sum(F*(MC - M)^2)/D)

where:
F = class frequency
MC = mark class
M = grouped mean
D = N - 1 or N, whether normalizes by n-1 or by n
N = sample size [=sum(F)]

--In orden to run it you must first download the m-file gvar at:
http://www.mathworks.com/matlabcentral/fileexchange/38281-gvar

Syntax: function y = gstd(x)

Inputs:
x - data matrix (Size of matrix must be n-by-2; absolut frequency=column 1, class mark=column 2)
n - [normalized by n-1] = 0 (default), [normalized by n] = 1

Outputs:
y - standard deviation of the values in x

Zitieren als

Antonio Trujillo-Ortiz (2025). gstd (https://de.mathworks.com/matlabcentral/fileexchange/38318-gstd), MATLAB Central File Exchange. Abgerufen.

Kompatibilität der MATLAB-Version
Erstellt mit R2010a
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Descriptive Statistics and Visualization finden Sie in Help Center und MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Veröffentlicht Versionshinweise
1.6.0.0

Text was improved.

1.4.0.0

Text was improved.

1.2.0.0

Text was improved.

1.1.0.0

It was added an appropriate format to cite this file.

1.0.0.0