Error in read.table: !header: invalid argument type

后端 未结 1 553
庸人自扰
庸人自扰 2021-01-13 05:00

I am having the strangest of issues. The following code no longer works:

Test<-matrix(rnorm(9),ncol=3)
 colnames(Test)<-c(\"a\",\"b\",\"c\")
 write.tab         


        
1条回答
  •  心在旅途
    2021-01-13 05:08

    Check class(T). Most likely T was overwritten with a non-boolean value. Restart of R probably loads the saved session.

    0 讨论(0)
提交回复
热议问题