i have an lm model that i built in r. i've saved the model as an rds file to load it into a power bi r visual. power bi desktop r visuals read rds files but it seems that power bi service r visuals do not read rds files
=> 1) am i right or is there a way to load rds files into power bi service r visuals?
as a solution, i've saved the model as a json (pfa) file using the aurelius package. i then load the json file as part of the data model. once the pfa is loaded in power bi, i use the pfa_engine function to get predictions from the model. however, the pfa_engine function is part of the rPython package which is not available in the power bi service.
=> 2) is there a way to get predictions without using the pfa_engine? the read_pfa function can only return a list object (not a model object). many thanks