一.是否相等的判断的方法 (1)判断字符串是否相等is.null(x) (2)判断x的每个元素是否在y中出现: x %in% y (3)判断判断每个相对应的元素是否相等: x == y (4)判断近似相等:all.equal(x,y)含有一个哦按点近似相等的参数,近似的参数还有identical(x,y) 二.R语言逻辑运算: 基本运算符号是 <,<=,>,>=; 判断严格相等:== 判断不等的 :!= 短逻辑比较符,将会比较全部元素,返回逻辑向量中每个对比结果,拼接成一个新向量
haoxin$ sed --helpUsage: sed [OPTION]... {script-only-if-no-other-script} [input-file]... -n, --quiet, --silent suppress automatic printing of pattern space -e script, --expression=script add the script to the commands to be executed -f script-file,