R語言基礎

2020-08-13 16:17:39

https://www.rdocumentation.org/ 各種包下載

https://chf2012.github.io/2017/03/19/%E8%BD%AF%E4%BB%B6%E5%BA%94%E7%94%A8_%E7%A8%8B%E5%BA%8F%E7%BC%96%E7%A8%8B/R/document/R_%E6%95%B0%E6%8D%AE%E5%A4%84%E7%90%86/ R_數據處理

https://blog.csdn.net/weixin_30809173/article/details/96266174?utm_medium=distribute.pc_relevant.none-task-blog-baidulandingword-1&spm=1001.2101.3001.4242 數據清理

https://blog.csdn.net/weixin_44016035/article/details/106218097 數據清理

yiibai.com/r 教學

型別轉換函數
1、判斷數據型別

is.numeric() 是否數值型數據
is.character() 是否字元型數據
is.vector() 是否向量數據
is.matrix() 是否矩陣數據
is.data.frame() 是否數據框數據
is.factor() 是否因子數據
is.logical() 是否邏輯型數據

以上爲判斷數據型別的函數,其返回TRUE或FALSE

2、轉換數據型別

as.numeric()
as.character()
as.vector()
as.matrix()
as.data.frame()
as.factor()
as.logical()

https://www.math.pku.edu.cn/teachers/lidf/docs/Rbook/html/_Rbook/index.html R語言教學

https://r4ds.had.co.nz/index.html (R for Data Science)

https://shiny.rstudio.com/ shiny_app