20230217_每日学习记录
20230217
-
R的匿名函数
(function(x, y){ z <- x^2 + y^2; return (x+y+z) })(0:7,1) #[1] 2 4 8 14 22 32 44 58
-
给R的list添加新的元素的时候,需要用双括号,用单括号容易报错|
list1[['firstElementName']] = firstElement
R的匿名函数
(function(x, y){ z <- x^2 + y^2; return (x+y+z) })(0:7,1) #[1] 2 4 8 14 22 32 44 58
给R的list添加新的元素的时候,需要用双括号,用单括号容易报错|
list1[['firstElementName']] = firstElement