dplyr 包
gather and spread
gather(data, key= , value= , : , convert=TRUE, na.rm=TRUE)
convert=TRUE 是否进行数据类型转化
separate and unite
separate(data, col= , into= c(" ",....), sep=" ")
sep: 如何拆分原变量的描述,可以是正则表达式。
unite是逆运算,合并多列。
逻辑运算符
xor(x,y): x和y其中之一为TRUE且不都为TRUE,则为TRUE(异或)
网友评论