문제

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.table(Test,file="Test.txt")
 d<-read.table("Test.txt",header=T)

I get:

Error in !header: invalid argument type

I tried rebooting R, it didn't help.

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top