Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello experts,
I tried the following code in R Studio which run seamlessly
values<-c(1,2,3,4,5)
df10<-data.frame(values)
S1<-as.list(df10$values)
r<-3
result<-data.frame(combn(S1,r))
result
but the same code returns the following error
DataFormat.Error: We cannot convert this value from its .RData representation.
However, if I alter the code to this in PBI
result<-data.frame(combn(c(1,2,3,4,5),3)) result
it works which means that POWER BI eliminates the possibilites of passing parameters to a R code. Do you know what is the work around to this?
Solved! Go to Solution.
Work around
values<-c(1,2,3,4,5) df10<-data.frame(values) library(dplyr) df11<-combine(df10$values) r<-3 result<-data.frame(combn(df11,r)) result
Work around
values<-c(1,2,3,4,5) df10<-data.frame(values) library(dplyr) df11<-combine(df10$values) r<-3 result<-data.frame(combn(df11,r)) result
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 56 | |
| 33 | |
| 33 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 67 | |
| 45 | |
| 30 | |
| 26 |