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.
データフレーム内の複数のセルの内容を置き換える必要があります。例として、vs列に含まれるmtcarsセルをどのように置き換えるのですか?1one
mtcars
1
one
mtcars$vs[mtcars$vs == 1] <- "one"
また
mtcars[mtcars$vs == 1, "vs"] <- "one"
このようなもの: