Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

required in r

# Is this library installed on this pc? if not install it and load it.
if (!require('smooth')){
  # https://cran.r-project.org/web/packages/smooth/vignettes/sma.html
  install.packages("smooth")
  library(smooth)
} else{
  library(smooth)
}
 
PREVIOUS NEXT
Tagged: #required
ADD COMMENT
Topic
Name
4+5 =