0% found this document useful (0 votes)
19 views1 page

R Studio Package Management Notes

The document discusses loading and using R packages, including installing, loading, and uninstalling packages, as well as basic operations like addition, subtraction, and using built-in functions.

Uploaded by

Andreas Larsson
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views1 page

R Studio Package Management Notes

The document discusses loading and using R packages, including installing, loading, and uninstalling packages, as well as basic operations like addition, subtraction, and using built-in functions.

Uploaded by

Andreas Larsson
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

#comments "multiple line comments"

#process
"
1) install new / require packages
2) load the package
3) use the function from the package.
"
#checked out the packages that has been installed.
[Link]()
#checked out the loaded package
search()
#install new package
[Link]("ExcelFunctionsR")
#uninstall existing package
[Link]("ExcelFunctionsR")
#load the package
library("ExcelFunctionsR")
#unload the package
detach("package:ExcelFunctionsR")

a = 10 + c
b <-1+a
q <-100
sqrt(q)
pi
10^3
#ctrl+l to clear screen
#rm to delete one specific variable
rm(a)
#check out all the variables
ls()
rm(list=ls()) # clear all variables

You might also like