All Projects → andreaphsz → importar

andreaphsz / importar

Licence: other
R package to import/load packages or functions the 'Python' way

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to importar

meteor-graphql
Compiler plugin that supports GraphQL files in Meteor
Stars: ✭ 56 (+229.41%)
Mutual labels:  package, import
lint-deps
Lint for unused or missing dependencies in your node.js projects. Customize with plugins or configuration.
Stars: ✭ 48 (+182.35%)
Mutual labels:  package, import
jean
Bored from installing tiny shell scripts and .dotfiles manually? Huh! Missing Shell Package Manager For Linux
Stars: ✭ 21 (+23.53%)
Mutual labels:  package
package-command
Lists, installs, and removes WP-CLI packages.
Stars: ✭ 16 (-5.88%)
Mutual labels:  package
buttons tabbar
A Flutter package that implements a TabBar where each label is a toggle button.
Stars: ✭ 49 (+188.24%)
Mutual labels:  package
MGM-Ability
No description or website provided.
Stars: ✭ 64 (+276.47%)
Mutual labels:  package
Rnightlights
R package to extract data from satellite nightlights.
Stars: ✭ 45 (+164.71%)
Mutual labels:  package
import-cli-simple
This the meta package for Pacemaker Community, a Symfony based CLI application that provides import functionality for products, categories, attributes, and attribute-sets. The default format is CSV, adapters for XML are also available. The application can be declaratively extended by additional operations, which can be used to reassemble and exe…
Stars: ✭ 69 (+305.88%)
Mutual labels:  import
timestampy
🕒 Bunch of utilities useful when working with UNIX timestamps
Stars: ✭ 21 (+23.53%)
Mutual labels:  package
PackageProject.cmake
🏛️ Help other developers use your project. A CMake script for packaging C/C++ projects for simple project installation while employing best-practices for maximum compatibility.
Stars: ✭ 48 (+182.35%)
Mutual labels:  package
cati
Cati Unix Package Manager
Stars: ✭ 19 (+11.76%)
Mutual labels:  package
laravel-otp
A laravel package to protect your routes with one time passwords (otp)
Stars: ✭ 147 (+764.71%)
Mutual labels:  package
R.oo
R package: R.oo - R Object-Oriented Programming with or without References
Stars: ✭ 19 (+11.76%)
Mutual labels:  package
qgis-kmltools-plugin
Fast KML Import and Export Plugin for QGIS
Stars: ✭ 45 (+164.71%)
Mutual labels:  import
Flogs
An Advanced Logging Framework develop in flutter that provides quick & simple logging solution.
Stars: ✭ 158 (+829.41%)
Mutual labels:  package
hej
Hej! is a simple authentication boilerplate for Socialite.
Stars: ✭ 111 (+552.94%)
Mutual labels:  package
excel mysql
Module for import Excel files to MySQL table and export MySQL table to Excel file using PHPExcel
Stars: ✭ 30 (+76.47%)
Mutual labels:  import
metric.js
ianramosc.github.io/metric.js
Stars: ✭ 29 (+70.59%)
Mutual labels:  package
flex color scheme
A Flutter package to make and use beautiful color scheme based themes.
Stars: ✭ 370 (+2076.47%)
Mutual labels:  package
response
Response HTTP package for Simfony, Laravel, Lumen and PHP 7 with standard REST API
Stars: ✭ 14 (-17.65%)
Mutual labels:  package

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)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].