Install R Packages for Power BI R Visualizations

Leave a comment

In Power BI, when using the R custom visualization, we may need to use an R package that is not installed. Note the list of supported packages.

For example, we’re trying to use the DT library:

But we get Error in Library(DT) there is no package called DT:

We can use the command install.packages to try to resolve this:

However, this produces this error:

R script error.
Installing package into ‘C:/Users/Library’
(as ‘lib’ is unspecified)
Error in contrib.url(repos, “source”) :
trying to use CRAN without setting a mirror
Calls: install.packages -> contrib.url
Execution halted

To fix this, we can specify a library:

install.packages(“DT”, repos = “http://cran.us.r-project.org”)

This fixes the issue, we can now run visualizations.

 

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

 

Leave a Reply

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