Skip to content

Commit d5a0b4f

Browse files
author
maechler
committed
amend c88435 (wrong *.Rd)
git-svn-id: https://svn.r-project.org/R/trunk@88437 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 8d8b58e commit d5a0b4f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/library/graphics/man/hist.Rd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ hist(x, \dots)
7070
\item{xlim, ylim}{the range of x and y values with sensible defaults.
7171
Note that \code{xlim} is \emph{not} used to define the histogram (breaks),
7272
but only for plotting (when \code{plot = TRUE}).}
73-
\item{log}{a string, by default \code{""}, otherwise typically \code{"x"}.}
7473
\item{axes}{logical. If \code{TRUE} (default), axes are drawn when the plot is.}
7574
\item{plot}{logical. If \code{TRUE} (default), a histogram is
7675
plotted, otherwise a list of breaks and counts is returned. In the

src/library/graphics/man/plothistogram.Rd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% File src/library/graphics/man/plothistogram.Rd
22
% Part of the R package, https://www.R-project.org
3-
% Copyright 1995-2022 R Core Team
3+
% Copyright 1995-2025 R Core Team
44
% Distributed under GPL 2 or later
55

66
\name{plot.histogram}
@@ -16,7 +16,7 @@
1616
col = "lightgray", border = NULL, lty = NULL,
1717
main = paste("Histogram of", paste(x$xname, collapse = "\n")),
1818
sub = NULL, xlab = x$xname, ylab,
19-
xlim = range(x$breaks), ylim = NULL,
19+
xlim = range(x$breaks), ylim = NULL, log = "",
2020
axes = TRUE, labels = FALSE, add = FALSE,
2121
ann = TRUE, \dots)
2222

@@ -40,6 +40,7 @@
4040
\item{main, sub, xlab, ylab}{these arguments to \code{title} have useful
4141
defaults here.}
4242
\item{xlim, ylim}{the range of x and y values with sensible defaults.}
43+
\item{log}{a string, by default \code{""}, otherwise typically \code{"x"}.}
4344
\item{axes}{logical, indicating if axes should be drawn.}
4445
\item{labels}{logical or character. Additionally draw labels on top of bars,
4546
if not \code{FALSE}; if \code{TRUE}, draw the counts or rounded

0 commit comments

Comments
 (0)