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.
一意の要素「北」、「南」、「東バー」を含む 100 行のデータセット $SITE があります。「East Bar」のすべての行を「East」に変更するにはどうすればよいですか?
の場合dataset$SITEは、factor@DavidRobinsonが提案するように実行します。 それ以外の場合は、以下を使用します。
dataset$SITE
factor
dataset$SITE[dataset$SITE == "East Bar"] <- "East"
要因を扱っているかどうかを確認する多くの方法の1つに注意してください。
is.factor(dataset$SITE)
levels(dataset$SITE)[1] = "East"