We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
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 |
|---|---|
| 53 | |
| 38 | |
| 33 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 62 | |
| 38 | |
| 34 | |
| 22 |