The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

importar

The goal of ‘importar’ is to prevent namespace conflicts by having loaded a lot of R packages. So ‘importar’ makes it easy to assign a (short) alias to a package or a function.

Installation

You can install ‘importar’ from GitHub with:

devtools::install_github("andreaphsz/importar")

or from CRAN with:

install.packages("importar")

Example

This is an example which shows you how to assign a short alias to the ‘dplyr’ package.

## assign 'd' to 'dplyr' and use 'dplyr' functions by invoking the '$' operator.
import(dplyr, d)
df <- data.frame(a=1:3, b=4:6)
df %>% d$filter(a == 2)

You can also assign an alias to functions to prevent namespace conflicts.

import_fun(dplyr, filter, fil)
df <- data.frame(a=1:3, b=4:6)
fil(df, a == 2)

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.