Rasterdiagramme

Mit der Funktion levelplot() lassen sich dreidimensionale Daten als flaches, also zweidimensionales Raster plotten, die Darstellung der dritten Dimension wird dabei von einer Farbkodierung übernommen:

levelplot(x, data,
          allow.multiple = is.null(groups) || outer,
          outer = TRUE,
          aspect = "fill",
          panel = lattice.getOption("panel.levelplot"),
          prepanel = NULL,
          scales = list(),
          strip = TRUE,
          groups = NULL,
          xlab, xlim,
          ylab, ylim,
          at,
          cuts = 15,
          pretty = FALSE,
          region = TRUE,
          drop.unused.levels = lattice.getOption("drop.unused.levels"),
          ...,
          lattice.options = NULL,
          default.scales = list(),
          colorkey = region,
          col.regions,
          alpha.regions,
          subset = TRUE)

Den wesentlichen Teil der Arbeit übernimmt die Panel-Funktion panel.levelplot():

panel.levelplot(x, ...

Get R in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.