Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 161 | |
| 132 | |
| 117 | |
| 79 | |
| 54 |