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 mode(s) 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.
Mode calculation uses the straight forward formula,
Mo = L + I*((F1 - F0)/(2*F1 - F0 - F2))
where:
L = lower limit of modal class
I = width of the interval containing the mode
F0 = frequency of class preceding the modal class
F1 = frequency of modal class
F2 = frequency of class succeeding the modal class
Syntax: function y = gmode(x)
Inputs:
x - data matrix (Size of matrix must be n-by-2; absolut frequency=column 1, class mark=column 2)
Outputs:
y - mode(s) of the values in x
引用格式
Antonio Trujillo-Ortiz (2024). gmode (https://www.mathworks.com/matlabcentral/fileexchange/38229-gmode), MATLAB Central File Exchange. 检索时间: .
MATLAB 版本兼容性
平台兼容性
Windows macOS Linux类别
- AI and Statistics > Statistics and Machine Learning Toolbox > Descriptive Statistics and Visualization >
标签
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!