I use both read.csv and read.table for importing data as following, but it`s not as numeric.can you help me whats the problem?
x<-read.csv("D:\\r-files\\mydata1.csv",header=TRUE,dec = ".")
> is.numeric(x)
[1] FALSE
or
x<-read.csv("D:\\r-files\\mydata1.txt",header=TRUE,dec = ".")
> is.numeric(x)
[1] FALSE>