R로 Shiny 웹 애플리케이션 만들기
Ramnath Vaidyanathan
VP of Product Research


ui <- fluidPage(
textInput('name', 'Enter your name')
)
server <- function(input, output, session){
observe({
showNotification(
paste("You entered the name", input$name)
)
})
}
역할
reactive()는 부작용 없이 값을 계산합니다.observe()는 부작용이 있는 동작을 수행합니다.차이점
R로 Shiny 웹 애플리케이션 만들기