Weekly R-Tips: Importing Packages and User Inputs
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Number 1: Importing Multiple Packages
Anyone who has used R for some time has written code that required the use of multiple packages. In most cases, this will be done by using the library or require function to bring in the appropriate extensions.
library(forecast) library(ggplot2) library(stringr) library(lubridateee) library(rockchalk)
That’s nice and gets the desired result, but can’t we just import all the packages we need in one or two lines. Yes we can, and here is the one line of code to do that.
libs <- c("forecast", "ggplot2", "stringr", "lubridateee", "rockchalk") sapply(libs, library, character.only=TRUE, logical.return=TRUE) libs <- c("forecast", "ggplot2", "stringr", "lubridateee", "rockchalk") lapply(libs, require, character.only=TRUE)
Number 2: User Input
One side project that I hope to start on is a process whereby I can interact with R and select options that will result in particular outcomes. For example, let’s say you’re trying to put together a script that manages a weekly list. A good first step would be a list of options that the user would see and be prompted to select an option. Here is how R can be used to get user input in such circumstances.
lopts <- cat(" 1. Add an item 2. Delete an item 3. Print the list 4. Quit ") action <- readline("Choose an option: ")
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.