How to deal with this grpstat error message
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Akzeptierte Antwort
the cyclist
am 15 Mai 2022
I think you want to use "mean" instead of "average" for the summary statistic.
1 Kommentar
Weitere Antworten (1)
Image Analyst
am 15 Mai 2022
You need to have braces around the average and sum, not brackets
{"average", "sum"}
4 Kommentare
the cyclist
am 15 Mai 2022
Bearbeitet: the cyclist
am 15 Mai 2022
It's easy to get muddled, because if you specify the input arguments as character arrays rather than strings, then you do need to use curly braces. (Notice the single quotes rather than the double quotes around the arguments.)
load patients
tbl = table(Gender,Age,Weight,Smoker);
tblstats = grpstats(tbl,{'Gender','Smoker'},{'mean','sum'},'DataVars','Weight')
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!