0
私はShinyでアプリを開発しています。送信ボタンを使ってプロットを描画したいまた、ユーザーが入力チェックボックスをチェックするとラベルを印刷したい私はボタンを使ってプロットをレンダリングすることができます。しかし、チェックボックスをオンにしても機能しません。ここで光沢のあるrenderPlotlyと2つの条件
コードです:
library(shiny)
library(plotly)
ui <- fluidPage(
actionButton('RUN', 'Run'),
checkboxInput('PrintLab', 'Label', FALSE),
plotlyOutput("plot1")
)
server = function(input, output) {
output$plot1 <- renderPlotly({
req(input$RUN)
isolate({
ggplotly(ggplot(data = mtcars, aes(wt, hp)) +
geom_point(size=1, colour = "grey"))
})
req(input$PrintLab)
isolate({
ggplotly(ggplot(data = mtcars, aes(wt, hp)) +
geom_point(size=1, colour = "grey") +
geom_text(aes(label=wt), size=3, colour = "black"))
})
})
}
runApp(shinyApp(ui, server))