Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
だから、ここで私がやりたいことは次のとおりです。
df <- data.frame(a=1:6, b=1:6) ss <- magicSubset(df, a <= 3) ss$b <- 100 df$b # should be c(100,100,100,4,5,6)
Rまたはパッケージにこのようなものはありますか? 実装するのはそれほど難しくないと思います...それが悪い考えである理由はありますか?
値をサブセットdf$b化して割り当てることができます。
df$b
df$b[df$a <= 3] <- 100