Re: [R] barplot as histogram

2011-11-04 Thread Jim Lemon
On 11/05/2011 05:04 AM, Jesse Brown wrote: Hello: I'm dealing with an issue currently that I'm not sure the best way to approach. I've got a very large (10G+) dataset that I'm trying to create a histogram for. I don't seem to be able to use hist directly as I can not create an R vector of size g

Re: [R] barplot as histogram

2011-11-04 Thread Jesse Brown
I believe that plot(..., type='h') will do the trick. I had tried that earlier but forgot to play with the lwd parameter. Incidentally, I didn't know about getAnywhere(hist.default) - really handy. I was reading the code to find the details. Thanks! Jesse R. Michael Weylandt wrote: Perh

Re: [R] barplot as histogram

2011-11-04 Thread Duncan Murdoch
On 04/11/2011 2:04 PM, Jesse Brown wrote: Hello: I'm dealing with an issue currently that I'm not sure the best way to approach. I've got a very large (10G+) dataset that I'm trying to create a histogram for. I don't seem to be able to use hist directly as I can not create an R vector of size gr

Re: [R] barplot as histogram

2011-11-04 Thread R. Michael Weylandt
Perhaps plot(xs, ys, type = "h", lwd = 3) will work? I'm not sure that a direct call to hist(, plot = F) will get around the data problems. If you type getAnywhere(hist.default) you can see the code that runs hist(): perhaps you can extract the working bits you need. Michael On Fri, Nov 4, 201

[R] barplot as histogram

2011-11-04 Thread Jesse Brown
Hello: I'm dealing with an issue currently that I'm not sure the best way to approach. I've got a very large (10G+) dataset that I'm trying to create a histogram for. I don't seem to be able to use hist directly as I can not create an R vector of size greater than 2.2G. I considered condensin