Forum Discussion
Anonymous
9 years agoNot applicable
Power BI & MongoDB
Hi Everyone! I´m working with MongoDB as data source of my Power BI. I created a ODBC conector with this driver: https://www.progress.com/odbc/mongodb?sfdcid=701a0000002MkKS&cmpid=ddblog ...
Greg_Deckler
9 years agoCommunity Champion
Not sure of your data in MongoDB, I take it that the "clients" column is some sort of list/array? You may have to convert whatever it is into something Power BI understands, like a Table or List.
For example, here are is some R code for processing information resulting from a Machine Learning call:
print("Result:")
result = h$value()
print(fromJSON(result))
##Return results back
inter <- do.call("rbind", finalResult$Results$output1$value$Values)
MyFinalResults <- data.frame(inter)
names(MyFinalResults) <- finalResult$Results$output1$value$ColumnNames
rm(list=setdiff(ls(), "MyFinalResults "))Anonymous
9 years agoNot applicable
Hi Greg_Deckler!
Can you tell me what R package are you using?
I´m a begginer in all of this R-world.
Thanks!
- Greg_Deckler9 years agoCommunity Champion
- Anonymous9 years agoNot applicable
I meant to the library inside R.
What library are you using: mongolite, rmongodb, rmongo....?I saw that there are differents options between each other.
Thanks!