How to deal with this grpstat error message

조회 수: 1 (최근 30일)
alpedhuez
alpedhuez 2022년 5월 15일
댓글: alpedhuez 2022년 5월 15일
I have an error message
Please advise the next step.

채택된 답변

the cyclist
the cyclist 2022년 5월 15일
I think you want to use "mean" instead of "average" for the summary statistic.

추가 답변 (1개)

Image Analyst
Image Analyst 2022년 5월 15일
You need to have braces around the average and sum, not brackets
{"average", "sum"}
  댓글 수: 4
the cyclist
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')
tblstats = 4×5 table
Gender Smoker GroupCount mean_Weight sum_Weight __________ ______ __________ ___________ __________ Male_0 {'Male' } false 26 180.04 4681 Male_1 {'Male' } true 21 181.14 3804 Female_0 {'Female'} false 40 130.32 5213 Female_1 {'Female'} true 13 130.92 1702
alpedhuez
alpedhuez 2022년 5월 15일
Thank you. "You specify the input arguments as character arrays rather than strings". Will you explain a bit more?

댓글을 달려면 로그인하십시오.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by