R in Action notes
摘要:
chapter02向量:一维数组(存数值型、字符型、逻辑型数据)a <- c(2:8)a[2:5]矩阵:二维数组A matrix is a two-dimensional array where each element has the same mode (numeric,character, or logical). Matrices are created with the matrix function. The general for-mat ismyymatrix <- matrix(vector, nrow=number_of_rows, ncol=number_of 阅读全文
posted @ 2013-06-19 18:25 ukouryou 阅读(168) 评论(0) 推荐(0) 编辑