Mateusz Liziniewicz
16 februari 2016
Now you can use a basic functions included in R
data.frame(Pkgs = sessionInfo()$basePkgs)## Pkgs
## 1 stats
## 2 graphics
## 3 grDevices
## 4 utils
## 5 datasets
## 6 methods
## 7 base
#for whole packages
?base
#for single functions
?data.frame> no it is not
install.packages("babynames")
#the package is installed but we can not use it yet
library(babynames)#call the library devtools (developer tools)
library(devtools)
#install github package
install_github("mateusz1981\sverfor")
library(sverfor)
?`sverfor-package`\
#this is very poor packageNow we are ready to start!!!!!
Questions?