How to use rxExec to run standard R remote?
问题 I'm trying to call the Standard R code via the function "rxExec" to execute the code remote. My compute context is RxInSqlServer() and the connection to the server is fine. Is this call possible in general? Or is there a better way to perform Standard R remote via SQL R Server Services? function1 <- function(varIn,varOut) { df<- rxImport(varIn) df<- ... [STANDARD R CODE] rxDataStep(inData = df, outFile = varOut numRows=1000) } rxSetComputeContext(cc) sql <- "SELECT * FROM ..." dbIn <-