作者markbaseball (Mark)
看板Statistics
標題[程式] R RANK不足
時間Sun Mar 29 20:01:08 2015
------------------------------------------------------------------------
[軟體程式類別]:
R
[程式問題]:
rank不足
[軟體熟悉度]:
新手(不到1個月)
[問題敘述]:
因為我的應變樹是一個60*44的矩陣。當我跑summary(manova(fit))
時顯示 residuals have rank 43 < 44 。而當我跑summary(fit)時卻變成每筆資料跑
一個迴歸。請問我到底錯在哪??
[程式範例]:
setwd("C:\\Users\\user\\Documents")
dat_names = list.files()[grep("csv", list.files())]
dat = Reduce(cbind, lapply(dat_names, read.csv))
responseFileName = "活頁簿1.csv"
f = as.formula(paste("cbind(", paste(names(read.csv(responseFileName, nrows =
1)), collapse = ","), ") ~ ."))
fit = lm(f, dat)
summary(manova(fit))
-----------------------------------------------------------------------------
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 163.22.18.73
※ 文章網址: https://www.ptt.cc/bbs/Statistics/M.1427630470.A.BEE.html
→ celestialgod: 沒講自變數的大小。 03/29 20:18
→ celestialgod: 自變數個數應該是16個,所以sample size不足造成man 03/29 20:44
→ celestialgod: ova residual的自由度不足 03/29 20:44