Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

How can I use dygraphs library ( R) in powerbi?

I can not see how to interact with the powerBI dataset. I'm using a simple chart. I can run using Rstudio but I can't run the same code using R visual in powerBI.

 

 

library("xts")
library("dygraphs")

 

QC$Timestamp <- as.Date(as.character(QC$Timestamp))

QC_xts <- xts(QC$XS,order.by=QC$Timestamp,frequency=365)

 

QCData <- cbind(QC_xts)

dygraph(QCData,ylab="Timestamp", main="XPTO") %>%

# dySeries("QC_xts",label="XS") %>%

# dySeries("..2",label="LNKD") %>%

dyOptions(colors = "blue") %>%

dyRangeSelector()

 

The erro is display any chart just X. PBI show this error: An exception of type Microsoft.PowerBI.ExploreServiceCommon.ContainPIIException occured.

 

@alcirodata 

3 REPLIES 3
v-evelk
Employee
Employee

Hello,

 

Regarding interaction with dataset, I suppose, you should use the same approach as in this line to pass name of buckets.

Regarding other moments, check please that libraries that you use are imported in R Studio.

Also, check please that integration into Power Bi Desktop is set up: File -> Options and settings -> Options -> R scripting

 

Kind Regards,

 

Evgenii Elkin,
Software Engineer
Microsoft Power BI Custom Visuals
pbicvsupport@microsoft.com

Anonymous
Not applicable

Thanks for your reply. Should I work the same way I work with plotly? Plotly doesn't work on R visual just pbiviz. Is it the same for dygraphs? Does it work well for large data?

Hello,

 

- "Should I work the same way I work with plotly?"

Could you clarify your question please, becuase I am unsure that I got it.

 

- "Plotly doesn't work on R visual just pbiviz. Is it the same for dygraphs?"

What do you mean?

 

- "Does it work well for large data?"

It have to work with 150 000 rows regarding documntation.

 

Kind Regards,

 

Evgenii Elkin,
Software Engineer
Microsoft Power BI Custom Visuals
pbicvsupport@microsoft.com

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors