-1

これは私が使用しているコードで、Rstudio で正常に動作します

a1 <- matrix(c(1601, 162527, 510, 412368), nrow=2, byrow=T)  
chisq.test(a1, correct=F)

これは私が得るエラーです

! Undefined control sequence.  
<argument> ^^M##^^M##  Pearson'  
s Chi-squared test^^M##^^M## data:  a1^^M## X...  
l.356 \end{verbatim}  

The control sequence at the end of the top line  
of your error message was never \def'ed. If you have  
misspelled it (e.g., `\hobx'), type `I' and the correct  
spelling (e.g., `I\hbox'). Otherwise just continue,  
and I'll forget about whatever was undefined.

私がやればうまくいくだろう

c1 <- chisq.test(a1, correct=F)

次に、を使用してp値を呼び出します

c1$p.value

この問題の原因は何ですか?

4

1 に答える 1

2

これは既知のバグであり、開発版では修正されています ( NEWSを参照)。今のところ、次の場所からインストールできます。

install.packages('knitr', repos = 'http://www.rforge.net/')
于 2013-03-03T03:10:13.230 に答える