search for: ihist

Displaying 2 results from an estimated 2 matches for "ihist".

Did you mean: hist
2006 Dec 27
2
Help with histograms
I would like to make one histogram combining two value vectors. One vector has more than 50 entries and the other only has 16. Both vectors contain dates in the POSIXct format. I need to be able to highlight the 16 entries from the smaller data set. Is it possible to do this with the hist function? Which function should I use? Sloan -- _______________________________________________ Surf the
2008 Feb 26
4
"Raw" histogram plots
Hello I need to plot a histogram, but insted of using bars, I'd like to plot the data points. I've been doing it like this so far: h <- hist(x, plot = F) plot(y = x$counts / sum(x$counts), x = x$breaks[2:length(x$breaks)], type = "p", log = "xy") Sometimes I want to have a look at the "raw" data (avoiding any kind of binning). When x