I am trying to utilize the R package pmultinom in Python by using pyRserve, with numbers that are imported to the code. I am having the following error:
REvalError: Error: object 'pmultinom' not found.
import pyRserve
num1 = 1
num2 = 2
num3 = 3
num4 = 4
num5 = 5
num6 = 6
vec1 = (.2,.3,.5)
r_script = '''
install.packages(pmultinom)
library(pmultinom)
pmultinom(
'''
full_rscript =( r_script + 'lower=c(' + str(num1) + ',' + str(num2) + ',' + str(num3) +
'), upper=c(' + str(num4) + ',' + str(num5) + ',' +
str(num6) +
'), size=' + str(num7) + ', probs=' + str(vec1) + ')'
)
output = conn.eval(full_rscript)
When I try a similar code with
conn.r.pmultinom(…)
I get an error that the function can't be found.
Here is one option with
pyper
as we have used it in production settings and it worked without any issuesWe don't need to create individual objects, it can be a list or tuple as in
vec1
. Just to demonstrateCreate an expression
and evaluate the expression and get the output
-testing from R side directly