Installing and Removing Packages in R
To install an R package, open your R UI such as RStudio. You will see Packages: Let’s install the DT library, which does not exist on this environment. We can do this through the GUI or through the command. We will do both, first the GUI. Click on Install: Enter DT into the Packages field and click Install: We can see this runs in the console the command: install.packages(“DT”) It … Continue reading Installing and Removing Packages in R