본문 바로가기

언어/R20

단축키 잊어버리네. Ctrl + Shift + M : %>%Alt + - : 2025. 1. 12.
shiny web 2 library(shiny)# Define Server Function server   output$selected_value   output$selected_option   output$selected_date   output$txtout     paste(input$txt1, input$txt2,          input$txt3, input$txt4, input$txt5,          input$txt6, input$txt7, input$txt8,          sep = " " )  })  output$plot     ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point()  })} # Loading the librarieslibrary(shiny)libr.. 2024. 11. 1.
load data ex_data View(ex_data)ex_data View(ex_data)ex_data View(ex_data)install.packages("readxl")library(readxl)excel_data View(excel_data)excel_data2 install.packages("XML")library(XML)xml_data View(xml_data)install.packages("jsonlite")library(jsonlite)json_data View(json_data) 2024. 7. 19.
R COPR repository This will make your R experience on Fedora much easierUnfortunately, CRAN does not provide binaries for Linux. That is why, by default install.packages() will compile any package you install from source. Many packages require developer libraries to be installed on the system for compilation. The lack of these packages is why you got the error.Overall, compiling packages yourself is far from idea.. 2024. 6. 12.
basic install.packages("gmodels", lib="/path/to/library")library(gmodels)detach(package:gmodels, unload=TRUE) 날짜변환t r studiodefault package folder.libPaths() 2024. 2. 17.
R site http://www.sthda.com/english/ STHDA - Home Statistical tools for data analysis and visualization www.sthda.com https://www.statlearning.com/resources-second-edition Resources - ISL with R, 2nd Edition — An Introduction to Statistical Learning Resources ISL with R, 2nd Edition www.statlearning.com https://search.r-project.org/ search.r-project.org search.r-project.org http://bigdata.dongguk.ac.kr.. 2023. 12. 16.