我对 Rshiny 很陌生。我写了这段代码:
ui=source('./www/uixx2.R')
server = function(input,output){}
shinyApp(ui = ui, server = server)
The uixx2.R file is placed in the subdirectory www and the code is:
ui=shinyUI("Why am i getting: ")
输出是: 为什么我得到:FALSE
每次使用源函数时,我的输出底部都会出现 FALSE。
