Re: [R] Plotting Data on a Map

2010-06-24 Thread Brandon Hurr
Upload it to GoogleDocs or Dropboxand give us a public link to the dataset. HTH, Brandon On Wed, Jun 23, 2010 at 21:57, Felipe Carrillo wrote: > For some reason the shapefile can't get attached. > The shapefile is too large to put it in dput..Is ther

Re: [R] memory problem for scatterplot using ggplot

2010-07-28 Thread Brandon Hurr
It was my understanding that R wasn't really the best thing for absolutely huge datasets. 17.5 million points would probably fall under the category of "absolutely huge." I'm on a little netbook right now (atom/R32) and it failed, but I'll try it on my macbookPro/R64 later and see if it's able to

Re: [R] reshape - reshape2 problem

2011-11-10 Thread Brandon Hurr
Have you tried loading reshape2 after ggplot2 and all it's requirements? Usually whatever is loaded last masks earlier loaded packages with functions of the same name so if reshape2 is last then it should mask reshape(1) and all of it's similarly named functions. Brandon On Thu, Nov 10, 2011 at 0

Re: [R] reshape - reshape2 problem

2011-11-10 Thread Brandon Hurr
Is the value.name ignored as well? Looks like it might have been left out of the function call? >reshape2::melt function (data, ..., na.rm = FALSE, value.name = "value") { UseMethod("melt", data) } Brandon On Thu, Nov 10, 2011 at 08:45, Johannes Radinger wrote: > > > Have you tried load