ページにプロットを動的に追加する、光沢のあるアプリを作成したいと考えています。10 個のプロットの場合もあれば、1 つだけの場合もあります。動的 UI の光沢のあるホームページでこのチュートリアルを使用しています。
これは簡単な例です。関数showme
はグラフをプロットしています
server.r
shinyServer(function(input, output) {
# Create an environment for storing data
symbol_env <- new.env()
# Make a chart for a symbol, with the settings from the inputs
make_chart <- function(symbol) {
showme(symbol)
}
display <- c("1083484" , "1101732")
output$MyList <- renderUi({
for (i in i:nrow(display))
renderPlot({make_chart(display[i])})
})
})
ui.r
shinyUI(pageWithSidebar(
headerPanel("My Plots !"),
sidebarPanel(
wellPanel(
p(strong("Scan1"))))
,mainPanel(
uiOutput("MyList")
)))
次のエラーが表示されます
Listening on port 8100
Error in .subset2(x, "impl")$defineOutput(name, value, deparse(substitute(value))) :
Unexpected character output for display
これがそうでない場合 - ガイダンスをいただければ幸いです。ありがとう。
> sessionInfo()
R version 2.15.3 (2013-03-01)
Platform: i386-w64-mingw32/i386 (32-bit)