I have the strangest problems. 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 got:
Error in the title! Invalid Argument Type
I tried restarting R, this did not help.
source
share