How to deal with this grpstat error message
조회 수: 1 (최근 30일)
이전 댓글 표시
댓글 수: 0
채택된 답변
the cyclist
2022년 5월 15일
I think you want to use "mean" instead of "average" for the summary statistic.
추가 답변 (1개)
Image Analyst
2022년 5월 15일
You need to have braces around the average and sum, not brackets
{"average", "sum"}
댓글 수: 4
the cyclist
2022년 5월 15일
편집: the cyclist
2022년 5월 15일
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')
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!