Installing and Removing Packages in R

Leave a comment

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 installs any other packages and completes:

We see it in our packages list:

To remove a package, use:

remove.packages(“DT”)

 

THANKS FOR READING. BEFORE YOU LEAVE, I NEED YOUR HELP.
 

I AM SPENDING MORE TIME THESE DAYS CREATING YOUTUBE VIDEOS TO HELP PEOPLE LEARN THE MICROSOFT POWER PLATFORM.

IF YOU WOULD LIKE TO SEE HOW I BUILD APPS, OR FIND SOMETHING USEFUL READING MY BLOG, I WOULD REALLY APPRECIATE YOU SUBSCRIBING TO MY YOUTUBE CHANNEL.

THANK YOU, AND LET'S KEEP LEARNING TOGETHER.

CARL

https://www.youtube.com/carldesouza

 

ABOUT CARL DE SOUZA

Carl de Souza is a developer and architect focusing on Microsoft Dynamics 365, Power BI, Azure, and AI.

carldesouza.comLinkedIn Twitter | YouTube

 

See more articles on: R

Leave a Reply

Your email address will not be published. Required fields are marked *