Histogramme

Ein sehr beliebter Diagrammtyp zur Darstellung der Verteilung einer Variablen ist das Histogramm. In lattice werden Histogramme mit der Funktion histogram() angelegt:

histogram(x, data,
          allow.multiple, outer = TRUE,
          auto.key = FALSE,
          aspect = "fill",
          panel = lattice.getOption("panel.histogram"),
          prepanel, scales, strip, groups,
          xlab, xlim, ylab, ylim,
          type = c("percent", "count", "density"),
          nint = if (is.factor(x)) nlevels(x)
                 else round(log2(length(x)) +   1),
          endpoints = extend.limits(range(as.numeric(x), finite = TRUE),
                                    prop =  0.04),
          breaks,
          equal.widths = TRUE,
          drop.unused.levels = lattice.getOption("drop.unused.levels"),
          ...,
          lattice.options = NULL,
          default.scales = list(),
          subscripts,
          subset)

Standardmäßig werden Histogramme von ...

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.