11010tianyi / playwith

Automatically exported from code.google.com/p/playwith
0 stars 2 forks source link

handle large datasets in latticist? #39

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Maybe look at handling very large datasets by
  - sampling
  - binning: levelplot / hexbin
  - summary stats like boxplot?

It is a bad idea to try to plot them, since lots of copies of the data end
up being made:
  - playState$trellis
  - grid display list
  - base display list
  - etc?

Original issue reported on code.google.com by foolish.android on 31 Jul 2008 at 8:18

GoogleCodeExporter commented 8 years ago
rather than 
qqmath(~ foo, f.value=ppoints(100))

subfoo <- quantile(foo, ppoints(100), na.rm=TRUE)
qqmath(~ subfoo)

it gets a bit more complicated if you want the sample to follow a distribution.

Original comment by foolish.android on 31 Jul 2008 at 12:34

GoogleCodeExporter commented 8 years ago
latticist has been split into a new package...

Original comment by foolish.android on 5 Nov 2008 at 3:57