Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Just a simple panel of linear model diagnostic plots. Comes out as expected on Desktop, only comes out partially in the Service. Is this a known issue?
Script:
# Original Script. Please update your script content here and once completed copy below section back to the original editing window # ### The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script: # dataset <- data.frame(TransactionDate, PayInAmt) # dataset <- unique(dataset) ### # includes library(ggplot2) library(scales) # add index dataset$pkid <- seq.int(nrow(dataset)) # build exponential decay model dataset$LogPayIn <- log(dataset[,2]) exp_model <- lm(dataset$LogPayIn ~ dataset$pkid) # generate predictions #dataset$predictedValues <- exp(predict(exp_model, as.list(dataset$pkid))) # plot residuals par(mfrow = c(2, 2)) plot(exp_model)
Desktop output:
Service output:
Not all R packages are supported by the Power BI service.
Check this link https://docs.microsoft.com/en-us/power-bi/service-r-packages-support
The two in my script are on that page you linked.
I'm having the same issue, not sure when it started happening. Had a post up but someone marked it as spam...
According to the first two bullet points in the link Aron provided, I think some packages might be supported in Desktop but not Service if they're not published in CRAN. I'm pretty sure all mine are published on CRAN - is the package `grid` supported on Service?
If it's not, I'd be surprised since my error doesn't mention that and instead says no data, specifically no rows to aggregate.
What's the exact error you get in Service?
There was no error given visible to me. Just incorrect output. 😞