> 1:5 + 6:10[1] 7 9 11 13 15
> c(1,3,5,7,9)+c(2,4,6,8,10)[1] 3 7 11 15 19
> median(2:5)[1] 3.5
> 1:10 / 3[1] 0.3333333 0.6666667 1.0000000 1.3333333 1.6666667 2.0000000 2.3333333[8] 2.6666667 3.0000000 3.3333333
> c(1,2,3-2,4) == 1[1] TRUE FALSE TRUE FALSE
> class(sqrt(1:10))[1] "numeric"> class(3+2i)[1] "complex"> class(3)[1] "numeric"> class(3L) #L后缀把3变成整型[1] "integer"> class(0.5:4.5)[1] "numeric"> class(1:4) #所有值都是整数才是整型[1] "integer"
> levels(gender)[1] "female" "male"> nlevels(gender)[1] 2> as.integer(gender)[1] 2 1 1 2 1使用factor在有大量重复字符串时可以节省内存
原文地址:http://blog.csdn.net/luoyhang003/article/details/38302675