Guest User

Untitled

a guest
May 20th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. check.installed <- function(pkgname) {
  2. is.element(pkgname, installed.packages()[ , 1])
  3. }
  4.  
  5. ## Verify that mosaic is installed!
  6. if (!check.installed("mosaic")) {
  7. install.packages("mosaic");
  8. }
  9.  
  10. library(mosaic)
Add Comment
Please, Sign In to add comment