Forum Discussion
141507
8 years agoHelper I
Use HighCharter Package/hchart() In Power Bi
library(xts)
library("forecast")
library(highcharter)
dates=as.Date(dataset$ReceivedDate,"%Y-%m-%d")
xs=xts(dataset$Volume,dates,frequency=12)
#plot(xs)
arima1 <-arima(xs,order=c(3,0,1),seasonal=lis...
141507
8 years agoHelper I
Hi Angelia,
I could not able to find the option to attach .pbix file in this reply blog. However I attached the code. Please check.
dataset <- data.frame(ReceivedDate,Volume)
dataset <- unique(dataset)
library(xts)
library("forecast")
library("highcharter")
dates=as.Date(dataset$ReceivedDate,"%Y-%m-%d")
xs=xts(dataset$Volume,dates,frequency=12)
#plot(xs)
arima1 <-arima(xs,order=c(3,0,1),seasonal=list(order=c(0,1,2),period=12))
q=forecast(arima1,h=60,level=c(80,82))
hchart(q)Regards,
Senthil D
141507
8 years agoHelper I
Hi,
Is any update on my above query.
Regards,
Senthil D
- Anonymous8 years agoNot applicable
Hi 141507 I'm trying to do the same thing as you, plot an interective graph from Rstudio in Power BI. I tried using dygraphs and plotly, but both give me the "Cant display image(...)" message. Did you figure out how to do this? Would you mind sharing? Thank you!
- 1415078 years agoHelper I
Hi, Unfortunately I did not get any solution for this. Hope Power BI Support team will revert.
Regards,
Senthil D