Paul Adams wrote:
Hello everyone,
I am trying to plot a histogram from the following code:
dat<-read.table(file="C:\\Documents and Settings\\Owner\\My 
Documents\\Yeast\\Yeast.txt",header=T,row.names=1)
file.show(file="C:\\Documents and Settings\\Owner\\My 
Documents\\Yeast\\Yeast.txt")
x<-dat[2,23:46]
y=mean(x,trim=0,na.rm=T)
colMeans(dat[2,23:46])
boxplot(dat[2,23:46])
hist(dat[2,23:46])

Check what the class of your object is

class(dat[2, 23:46])

may be a data.frame. If so, you can try to convert accordingly (see ?as.numeric)

Erik

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to