R には明らかな単純な関数が欠けているようです: psum
. 別の名前で存在しますか、それともパッケージのどこかにありますか?
x = c(1,3,NA,5)
y = c(2,NA,4,1)
min(x,y,na.rm=TRUE) # ok
[1] 1
max(x,y,na.rm=TRUE) # ok
[1] 5
sum(x,y,na.rm=TRUE) # ok
[1] 16
pmin(x,y,na.rm=TRUE) # ok
[1] 1 3 4 1
pmax(x,y,na.rm=TRUE) # ok
[1] 2 3 4 5
psum(x,y,na.rm=TRUE)
[1] 3 3 4 6 # expected result
Error: could not find function "psum" # actual result
私はそれ+
がすでに似ていることを理解していますpsum
が、どうNA
ですか?
x+y
[1] 3 NA NA 6 # can't supply `na.rm=TRUE` to `+`
追加する場合はありpsum
ますか?または私は何かを逃しました。
この質問は、この質問のフォローアップです:
Using :=
in data.table to sum the values of two columns in R, ignoring NAs