I have data on a single variable LOGT. It has about
300,000 observations. I am trying to make a Histogram
out of this data set. Following is my effort. Could
anyone help me to solve this error.


> hist(x)
Error in hist.default(x) : `x' must be numeric
> class(x)
[1] "data.frame"
> is.object(x)
[1] TRUE
> is.vector(x)
[1] FALSE
> is.numeric(x)
[1] FALSE
> is.factor(x)
[1] FALSE

note:plot(x) works okay

durai

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to