Control Widgets
기본 Widgets function widget actionButton Action Button checkboxGroupInput A group of check boxes checkboxInpu...
기본 Widgets function widget actionButton Action Button checkboxGroupInput A group of check boxes checkboxInpu...
기본 구조 library(shiny) library(bslib) # Define UI ---- ui <- page_sidebar( ) # Define server logic ---- server <- function(input, output) { } # Run the app ---- shinyApp(ui = ui, server =...
R 설치 Windows 기준으로 R, Rtools를 설치한다. R과 Rtools 버전은 호환성을 위해 같은 버전으로 설치 진행한다. rmd(rm arkdown) 파일 작성을 위해 RStudio 설치도 진행한다(필요시). [!NOTE] R 설치 R - https://cran.rstudio.com/bin/windows/base/ ...
옵시디언으로 블로그 글 작성하기 옵시디언에서 글 작성 후 → GitHub Desktop을 이용하여 commit 하기 [!NOTE] 콜아웃 제목 깃허브에서 어떻게 나오는지 확인 중 [!NOTE] Highlights information that users should take into account, even when skim...
들어가기 data.table 패키지는 다음과 같은 이점을 제공한다. 간결하고 일관된 구문 인지적 부담없이 유동적으로 분석 빠르고 효율적인 코드 생성 사용할 데이터는 NYC-flights14로 2014년 뉴욕시 공항에서 출발한 모든 정시 항공편 데이터를 포함한다. library(data.table) library(dplyr) input ...