-
Notifications
You must be signed in to change notification settings - Fork 4
Home
We've moved to the Issues page
(some of the entries below still needs to be moved to Issues /HB 2018-03-20)
People commented:
- DE: @eddelbuettel
- GB: @gmbecker
- HB: @HenrikBengtsson (implicit unless otherwise specified)
- ML: @lawremi
List of features and modification I would love to see in R:
-
Internal
HASNA(x)
flag indicating whetherx
has missing values (HASNA=1
) or not (HASNA=0
), or it is unknown (HASNA=2
). This flag can be set by any function that have scannedx
for missing values. This would allow functions to skip expensive testing for missing values wheneverHASNA=0
. (Now it is up to the user to keep track and use na.rm=FALSE, iff supported)- STATUS: Luke [Tierney] is changing the
SEXP
header for reference counting. Thanks to the need for alignment, we will get some extra bits. We have already decided to use one of those for this purpose. Another bit will track whether a vector is sorted. /ML (2015-11-14) - DISCUSSION: Issue #12
- STATUS: Luke [Tierney] is changing the
-
Generic support for dimension-aware attributes that are acknowledged whenever the object is subsetted. For vectors we have
names()
, for matrices and data frames we haverownames()
andcolnames()
, and for arrays and other objects we havedimnames()
.- DISCUSSION: Issue #2
- Mockup example:
> x <- matrix(1:8, ncol=4)
> colnames(x) <- c("A", "B", "C", "D")
> colattr(x, 'gender') <- c("male", "male", "female", "male")
> x
male male female male
A B C D
[1,] 1 3 5 7
[2,] 2 4 6 8
> x[,2:3]
male female
B C
[1,] 3 5
[2,] 4 6
- Add support for
dim(x) <- dims
, wheredims
has oneNA
value, which is then inferred fromlength(x)
andna.omit(dims)
. If incompatible, then an error is given. For example,
> x <- matrix(1:12, ncol=4)
> dim(x)
[1] 3 4
> dim(x) <- c(NA, 3)
> dim(x)
[1] 4 3
Comment: The R.utils::dimNA()
function implements this.
- Preserve element names in multi-dimensional subsetting. For instance, with
x <- matrix(1:6, nrow=2); names(x) <- letters[1:6]
we get thatnames(x[,1:2])
isNULL
.
- DISCUSSION: Issue #5
- Allow attributes
dim
anddimnames
for environments. Currently we getattr(env, "dim") <- c(2, 3) : invalid first argument
.- Dim attributes are used for list environments. /HB
- Explicitly specify the value of an argument as "missing". For instance, calling
value <- missing()
andfoo(x=value)
should resolvemissing(x)
asTRUE
.
- DISCUSSION: Issue #17
-
value <- sandbox(...)
which analogously toevalq(local(...))
evaluates an R expression but without leaving any side effects and preserving all options, environments, connections sinks, graphics devices, etc. The effect should be as evalutating the expression in a separate R processing (after importing global variables and loading packages) and returning the value to the calling R process. -
source(..., args=...)
- pass / override command-line arguments when callingsource()
.
-
Allow for
mc.cores = 0
inparallel::mclapply()
and friends- DISCUSSION: Issue #7
-
See also
Rscript -p <n> foo.R
under Section 'Calling R' below.- DISCUSSION: Issue #14
-
Support for one-sided plot limits, e.g.
plot(5:10, xlim=c(0,+Inf))
wherexlim[2]
is inferred from data, cf.xlim=NULL
. -
Standardized graphics device settings and API. For instance, we have
ps.options()
but nopng.options()
. For some devices we can set the default width and height, whereas for others the defaults are hardwired to the arguments of the device function. Comment: TheR.devices
package tries to work around this.
-
Atomic writing to file to avoid incomplete/corrupt files being written, e.g.
saveRDS(x, file="foo.rds", atomic=TRUE)
.- DISCUSSION: Issue #20
-
A simple class for files, e.g.
pathname <- p("R/zzz.R")
andpathnames <- p("R/000.R", "R/zzz.R")
. More over, for instance,pathnames <- dir("R/")
should effectively returnpathnames <- p(dir("R/"))
.- DISCUSSION: Issue #9
-
A simple class for regular expressions, e.g.
gsub(re("^[a-z]+"), x)
. Also fixed expression, e.g.gsub(fe("(abc)"), x)
. This could allow for things such as usingx[re("a.a")]
to get subsetx[c("aba", "aea")]
.
-
Support URLs in addition to local files when calling
R -f
orRscript
, e.g.Rscript http://callr.org/install#MASS
.- DISCUSSION: Issue #16
-
Package scripts via
Rscript R.rsp::rfile
, which calls scriptrfile.R
insystem.file("exec", package="R.rsp")
iff it exists. Similarly forR CMD
, e.g.R CMD R.rsp::rfile
. Also, if package is not explicitly specified, theexec
directory of all packages should be scanned (only forR CMD
), e.g.R CMD rfile
. See also R-devel threadR CMD <custom>
? -
R CMD check --flavor=<flavor>
for custom add-on package validation tests, e.g.R CMD check --flavor=CRAN,lintr,covr
.- DISCUSSION: Issue #16
-
Rscript -p <n> foo.R
(or--processes=<n>
) for specifying that a (maximum of)<n>
cores may be used including the main process.- DISCUSSION: Issue #14
-
R() / Rscript()
- calling R / Rscript viasystem()
in a separate process. Should (optionally) preserve the same setup (e.g..libPaths()
,options()
, ...) as the calling R session.- DISCUSSION: Issue #13
-
A more informative abort message than "aborting ...", e.g.An irrecoverable exception occurred. R is aborting now ...
.- RESOLVED: Issue #3
- Function
randomSeed(action, seed, kind)
for interacting with.Random.seed
:.Random.seed
holds the current RNG state. It must live in the global environment (it's ignored anywhere else). If the RNG state is not initiated,.Random.seed
does not exists. /HB
- FACT: The fact that one can not assume that
.Random.seed
requires one to always useexists(".Random.seed", envir=globalenv(), inherits=FALSE)
. Even if R would always initiate the RNG state,.Random.seed
could be removed by the user or other code at any time. /HB - FACT: The above leads to cumbersome code for getting, setting and resetting the RNG state involving
exists(".Random.seed", envir=globalenv(), inherits=FALSE)
,get(".Random.seed", envir=globalenv(), inherits=FALSE)
,assign(".Random.seed", seed, envir=globalenv(), inherits=FALSE)
andrm(".Random.seed", envir=globalenv(), inherits=FALSE)
calls. Also,R CMD check
will complain about assignments to the global environment, so one needs to trick it by working withenvir=genv
wheregenv <- globalenv()
. /HB - PROPOSAL: Hide the above mess by
randomSeed(action, seed, kind)
, whererandomSeed("get")
would return the current value of.Random.seed
(orNULL
if non existing), andrandomSeed("set", seed=s)
would assign.Random.seed <- s
(unlesslength(s) == 1L
whenset.seed(s)
is called instead). WithrandomSeed("set", seed=s, kind=k)
one can setRNGkind(k)
and the new seed at the same time. This function also push/pop current RNG(kind, seed)
states such that it can be reset byrandomSeed("reset")
. For L'Ecuyer-CMRG RNG streams (useful for asynchronous processing),randomSeed("advance")
could be used to advance to the next RNG stream. /HB - PROPOSAL: With a function, such as
randomSeed()
, R could do much more validation and eventually move away from having.Random.seed
in the global environment, which is rather unsafe and error prone. /HB
-
Enforce that all namespaces can be unloaded / all package be detached cleanly (including unregistering any DLLs). /HB
- DISCUSSION: Issue #29
-
The system-library directory should be read only after installing R and/or not accept installation of non-base packages. If installation additional packages there, an end-user is forced to have those package on their library path. Better is to install any additional site-wide packages in a site-wide library, cf.
.Library.site
andR_LIBS_SITE
. This way the user can choose to include the site-wide library/libraries or not. -
One package library per repository, e.g.
~/R/library/3.1/CRAN/
,~/R/library/3.1/Bioconductor/
, and~/R/library/3.1/R-Forge/
. This way it is easy to include/exclude complete sets of packages.install.packages()
should install packages to the corresponding directory, cf. howupdate.packages()
updates packages where they lives (I think). -
Repository metadata that provides information about a repository. This can be provide as a DCF file
REPOSITORY
in the root of the repository URL, e.g.http://cran.r-project.org/REPOSITORY
andhttp://www.bioconductor.org/packages/release/bioc/REPOSITORY
. The content ofREPOSITORY
could be:
Repository: BioCsoft_3.1
Title: Bioconductor release Software repository
Depends: R (>= 3.2.0)
Description: R package repository for Bioconductor release 3.1 branch.
Maintainer: Bioconductor Webmaster <webmaster@bioconductor.org>
URL: http://www.bioconductor.org/packages/release/bioc
SeeAlso: http://www.bioconductor.org/about/mirrors/mirror-how-to/
IsMirror: TRUE
-
R CMD xyz
has few external hooks besides calling thecleanup
scripts. It would be nice if one or more additional scripts could be call prior toR CMD build
and maybe also beforeR CMD INSTALL
.R CMD build
needs to call a script to call a)Rcpp::compileAttributes()
to updateRcppExports.{cpp,R}
based on the declared C++ interfaces and b)roxygen2::roxygenize()
to updateman/
based onR/
(and this should happen after the previous step) /DE- I think the hooks should almost exclusively be at the
R CMD INSTALL
step. That is where the package library is "made" (in the sense ofmake
). Essentially, these hooks would be extensions to the fact that you can already provide a configure script, by letting you specify, e.g. the R-based engine to build docs or auto-generate C or R code. /GB
- I think the hooks should almost exclusively be at the
- Use 'KiB', 'MiB', 'GiB', 'TiB', ... for byte sizes
- DISCUSSION: Issue #6