How perform anova tests after using regress in MATLAB?

조회 수: 3 (최근 30일)
EM geo
EM geo 2019년 9월 7일
댓글: EM geo 2019년 9월 9일
Hi! I'm trying to perform ANOVA analysis for a multiple regression model built using
regress
This is my model:
clc; clear; close all;
load('pred_zeros')
D = [Zero L_mean R_mean];
D(any(isnan(D), 2), :) = []; %remove NaN from matrix D
%linear regression
X =[ones(size(D(:,1),1),1),D(:,1),D(:,2)];
b = regress(D(:,3), X);
Rmean_regr = b(1) + D(:,1)*b(2) + D(:,2)*b(3);
[~,~,~,~,stats] = regress(D(:,3), X); %model statistic
I only generate model statistics using stats. How should i do?

채택된 답변

Jeff Miller
Jeff Miller 2019년 9월 8일
Elisa, I think this might do what you want:
%linear regression
d1 = D(:,1);
d2 = D(:,2);
d3 = D(:,3);
t = table(d1,d2,d3);
mdl12 = fitlm(t,'d3~d1+d2');
a = anova(mdl12)

추가 답변 (1개)

Jeff Miller
Jeff Miller 2019년 9월 7일
It's a little difficult to say because "perform ANOVA" can mean several different things with regression models.
Usually the best approach is to make comparisons among models, where you fit several different regression models and compare their SSerror's. MATLAB's 'stepwisefit' does that, so you might have a look and see whether that will answer the specific question(s) that you have.
  댓글 수: 1
EM geo
EM geo 2019년 9월 7일
Jeff thank you for your reply. I was seraching for ANOVA analysis to apply to regression methods and i found this link https://it.mathworks.com/help/stats/linearmodel.anova.html#bszh780-1_sep_shared-mdl
I was wondering if is it possible to apply it to regress function. Can you help me about this?

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

카테고리

Help CenterFile Exchange에서 ANOVA에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by