How can I write ANOVA results to a csv file?

15 ビュー (過去 30 日間)
Dustin
Dustin 2022 年 11 月 21 日
コメント済み: Dustin 2022 年 11 月 21 日
I want to write results from an ANOVA to a csv file, but writetable() gives me this error.
Unrecognized field name "internal.stats.DoubleTableColumnReal".
I am using the example from the ranova() documentation
load fisheriris
t = table(species,meas(:,1),meas(:,2),meas(:,3),meas(:,4),...
'VariableNames',{'species','meas1','meas2','meas3','meas4'});
Meas = table([1 2 3 4]','VariableNames',{'Measurements'});
rm = fitrm(t,'meas1-meas4~species','WithinDesign',Meas);
ranovatbl = ranova(rm)
writetable(ranovatbl,'test_table.txt')

採用された回答

cr
cr 2022 年 11 月 21 日
編集済み: cr 2022 年 11 月 21 日
Don't understand whats causing the problem, but the below line works
writetable(ranovatbl(1:end,:),'test_table.txt')
Really strange. Looking forward to an explanation from experts/staff if this is a bug.
  1 件のコメント
Dustin
Dustin 2022 年 11 月 21 日
Thanks, yeah this works, weird that it's required though.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnalysis of Variance and Covariance についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by