grpstats flexibility for additional functions

3 Ansichten (letzte 30 Tage)
Brian
Brian am 6 Mär. 2015
Kommentiert: Brian am 9 Mär. 2015
Hi, I am just wondering if the grpstats function can be used with things other than the standard formulas listed on the help page. A perfect example would be if I wanted population standard deviation instead of the canned sample standard deviation. This would then extend to personally written functions as well.
Grpstats appears to be an extremely useful function for statistical analysis if it is indeed more flexible than what I'm see in the help file.
Any advice or alternative recommendations for calculating statistics by group would be greatly appreciated.
Thanks much, Brian

Akzeptierte Antwort

Brendan Hamm
Brendan Hamm am 6 Mär. 2015
If you look at the documentation the input variable whichstats can be a function handle. So for your example of the population standard deviation we can do the following:
x = rand(50,1); % Make some random data.
grpVar = logical([ones(25,1);zeros(25,1)]); % Split data into 2 groups
popStd = @(y) std(y,1); % make a function handle that computer pop. std.
myStats = grpstats(x,grpVar,popStd);
Using this method, you can make your own statistical functions. Also the list of stats given in the doc is not exhaustive. For example:
myKurt = grpstats(x,grpVar,'kurtosis');
returns the kurtosis of the groups.
  1 Kommentar
Brian
Brian am 9 Mär. 2015
Perfect, exactly what I was looking for. Thank you sir.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by