次のデータフレームがあります。
library(dplyr)
library(tibble)
df <- tibble(
source = c("a", "b", "c", "d", "e"),
score = c(10, 5, NA, 3, NA ) )
df
次のようになります。
# A tibble: 5 x 2
source score
<chr> <dbl>
1 a 10 . # current max value
2 b 5
3 c NA
4 d 3
5 e NA
私がやりたいのはNA
、スコア列の既存の範囲の値に置き換えることですmax + n
。ここでn
1からの行の合計数までの範囲df
この結果(手作業でコーディング):
source score
a 10
b 5
c 11 # obtained from 10 + 1
d 3
e 12 # obtained from 10 + 2
どうすればそれを達成できますか?
seq(which(is.na(df$score)))
があります1:sum(is.na(df$score))