次のコードを含むserver.rが含まれる光沢のあるアプリがあります
shinyServer(function(input, output) {
data <- reactive(function() {
# some processing
df # dataframe with columns: name,date,count
})
output$plot1 <- reactivePlot(function() {
# boxplot based on df$count grouped by df$name
})
output$plot2 <- reactivePlot(function() {
# linegraph based on x=df$date, y=df$count grouped by df$name
})
})
df$countなどをreactivePlotsで参照できるように構築するにはどうすればよいですか。reactive関数'data'で作成しました。
乾杯