Shiny란? R에서 웹 프로그래밍을 가능하게 해주는 패키지 최신 웹 브라우저를 이용하여 인터렉티브한 데이터 정리와 질의를 쉽게 할 수 있는 기능을 제공 다양한 위젯이 있어 사용자 인터페이스와 인터렉티브 기능을 쉽고 빠르게 구현할 수 있게 함 install.packages("shiny") library(shiny) 샘플 불러오기 runExample("01_hello") Shiny Web App # Define UI for application that draws a histogram fluidPage( # Application title titlePanel("Old Faithful Geyser Data"), # Sidebar with a slider input for number of bins sideb..