A.for(num in c(1,2,3)){print(num)}B.c(1,2,3)C.c(1:3)D.c(0,1,2,3,4,5)[2:4]
单项选择题要从名为“people”的数据框中删除已有的“firstname”列,应该用以下哪个代码?()
A.firstname < -NAB.people$MathJaxfirstname < -FALSEC.people(“firstname”)< -NAD.people$MathJaxfirstname < -NULL
单项选择题如何将以下的特征向量转换成整数向量?()my_vector < -c( 1992 , 2016 , 2012 , 2018 )
A.as.integer(my_vector)B.as.numeric(my_vector)C.tointeger(my_vector)D.converttointeger(my_vector)
单项选择题以下哪个正则表达式会和形式为“name@domain.com”的电子邮箱地址相匹配?()
A.“.+@.+.com”B.“.+@.+\\.com”C.“.*@.*.com"D.“.*@.*\\.com”E.“.+@.+”
单项选择题思考一下以下grep语句:grep(“.+ ..+”,c(x))如果这个语句输出1,表示得到匹配,以下哪个x值是有可能的?()
A.x < -toupper“test”B.x < -chartr“.”,““,“test.com”C.x < -substr“test.com”,start =4,stop =7D.x < -str_sub“test.com”,-4,-1E.x < -substr“test.com”,start =1,stop =5
单项选择题思考一下以下grep语句:grep(“.* ..+”,c(x))如果这个语句输出1,表示得到匹配,以下哪个x值是有可能的?()
A.x < -tolower“test”B.x < -chartr“”,“.“,“test com”C.x < -substr“test.com”,start =3,stop =5D.x < -str_sub“test.com”,-3,-1E.x < -substr“test.com”,start =6,stop =8