bug.report(subject = "", address, file = "R.bug.report", package = NULL, lib.loc = NULL, ...)
NULL
.
The default value of NULL
corresponds to all libraries
currently known.method
and
ccaddress
to pass to create.post
.r-devel@r-project.org
is a better
place for discussions of this sort than the bug list. If you are not sure what the command is supposed to do
after a careful reading of the manual this indicates a bug in the
manual. The manual's job is to make everything clear. It is just as
important to report documentation bugs as program bugs. If the online argument list of a function disagrees with the manual,
one of them must be wrong, so report the bug.data.frame(x, y, z, monday, tuesday)
never
returns. Do not report that data.frame()
fails for large data
sets. Perhaps it fails when a variable name is a day of the week. If
this is so then when we got your report we would try out the
data.frame()
command on a large data set, probably with no day
of the week variable name, and not see any problem. There is no way in
the world that we could guess that we should try a day of the week
variable name. Or perhaps the command fails because the last command you used was a
[
method that had a bug causing R's internal data structures
to be corrupted and making the data.frame()
command fail from
then on. This is why we need to know what other commands you have
typed (or read from your startup file). It is very useful to try and find simple examples that produce
apparently the same bug, and somewhat useful to find simple examples
that might be expected to produce the bug but actually do not. If you
want to debug the problem and find exactly what caused it, that is
wonderful. You should still report the facts as well as any
explanations or solutions. Invoking R with the --vanilla option may help in isolating a
bug. This ensures that the site profile and saved data files are not
read. A bug report can be generated using the function bug.report()
.
For reports on R this will open the Web page at
https://bugs.r-project.org/: for a contributed package it will
open the package's bug tracker Web page or help you compose an email
to the maintainer. Bug reports on contributed packages should not be sent to the
R bug tracker: rather make use of the package
argument.package
is NULL
or a base package, this opens the R
bugs tracker at https://bugs.r-project.org/. If package
is specified, it is assumed that the bug report is
about that package, and parts of its DESCRIPTION file are
added to the standard information. If the package has a
BugReports
field in the DESCRIPTION file, that URL
will be opened using browseURL
, otherwise an email
directed to the package maintainer will be generated using
create.post
.
help.request
which you possibly should try
before bug.report
. create.post
, which handles emailing reports.
The R FAQ, also sessionInfo()
from which you may add
to the bug report.