hist.prettyB: PrettyB hist.default function

Description Usage Arguments Examples

View source: R/hist.R

Description

This function overrides the default arguments. See ?graphics::hist.default

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
## S3 method for class 'prettyB'
hist(
  x,
  breaks = "Sturges",
  freq = NULL,
  probability = !freq,
  include.lowest = TRUE,
  right = TRUE,
  density = NULL,
  angle = 45,
  col = NULL,
  border = NULL,
  main = paste("Histogram of", xname),
  xlim = range(breaks),
  ylim = NULL,
  xlab = xname,
  ylab,
  axes = TRUE,
  plot = TRUE,
  labels = FALSE,
  nclass = NULL,
  warn.unused = TRUE,
  ...
)

hist_p(
  x,
  breaks = "Sturges",
  freq = NULL,
  probability = !freq,
  include.lowest = TRUE,
  right = TRUE,
  density = NULL,
  angle = 45,
  col = NULL,
  border = NULL,
  main = paste("Histogram of", xname),
  xlim = range(breaks),
  ylim = NULL,
  xlab = xname,
  ylab,
  axes = TRUE,
  plot = TRUE,
  labels = FALSE,
  nclass = NULL,
  warn.unused = TRUE,
  ...
)

Arguments

x, breaks, freq, probability

See ?graphics::hist.default

include.lowest, right, density

See ?graphics::hist.default

angle, col, border, main

See ?graphics::hist.default

xlim, ylim, xlab, ylab, axes, plot

See ?graphics::hist.default

labels, nclass, warn.unused

See ?graphics::hist.default

...

See ?graphics::hist.default

Examples

1
2
x = rlnorm(100)
hist(x)

prettyB documentation built on Feb. 10, 2021, 5:11 p.m.