『Data Science』R语言学习笔记,基础语法
发布时间:2021-02-27 06:18:56 所属栏目:大数据 来源:网络整理
导读:副标题#e# Data Types Data Object Vector x - c(0.5,0.6) ## numericx - c(TRUE,FALSE) ## logicalx - c(T,F) ## logicalx - c("a","b","c") ## characterx - 9:29 ## integerx - c(1+0i,2+4i) ## complexx - vector("numeric",length = 10) ## create a n
|
myplot <- function(x,y,type = "1",...) {
plot(x,type = type,...)
}
|
站长推荐


