Hi im transferring an R code to sas using the "submit / R;" of IML. My code has a shiny app and when i try to run it, it doesnt give me an error but it never stops running:
Heres a simple example of what im trying to do
proc iml;
print "------------- R Results --------------------";
submit / R;
library(dplyr)
library(lubridate)
library(shiny)
ui <- fluidPage(
"The population of France in 1972 was",
textOutput("answer")
)
# Define the server function
server <- function(input, output) {
output$answer <- renderText({
"50,763,920" })
}
endsubmit;
thanks!