How to replace the dataset with one value if it satisfies a condition, if not with another value

huangapple go评论87阅读模式
英文:

How to replace the dataset with one value if it satisfies a condition, if not with another value

问题

我有一个包含30列的数据集。一个示例看起来可能像这样:

  1. data <- data.frame(name=c("A", "B", "C", "D", "E", "C", "A", "B"),
  2. place=c("B", "c", "F", "C", "G", "A", "H", "A"))

现在我想将整个数据集的值替换为1,如果name等于A,并且不等于1则替换为0。

英文:

I have a dataset with 30 columns. An example would look something like this

  1. data <- data.frame(name=c("A", "B", "C", "D", "E", "C", "A", "B"),
  2. place=c("B", "c", "F", "C", "G", "A", "H", "A"))

Now I would like to replace the whole of dataset with value of 1 if name=A and with 0 if not equal to 1.

答案1

得分: 1

如果您想要替换数据集中 name == 'A' 的行,您可以执行以下操作:

  1. library(dplyr)
  2. data <- data.frame(name=c("A", "B", "C", "D", "E", "C", "A", "B"),
  3. place=c("B", "c", "F", "C", "G", "A", "H", "A"))
  4. data %>%
  5. mutate(
  6. across(.fns = ~ if_else(name == "A", 1, 0))
  7. )

或者,如果您想要将数据中所有 'A' 的值替换为1,其他值替换为0,可以执行以下操作:

  1. library(dplyr)
  2. data <- data.frame(
  3. name = c("A", "B", "C", "D", "E", "C", "A", "B"),
  4. place = c("B", "c", "F", "C", "G", "A", "H", "A")
  5. )
  6. data %>%
  7. mutate(
  8. across(.fns = ~ if_else(.x == "A", 1, 0))
  9. )

希望这有帮助。

英文:

If you want to replace the row of the dataset where name == &#39;A&#39;, you can do the follwoing,

  1. library(dplyr)
  2. data &lt;- data.frame(name=c(&quot;A&quot;, &quot;B&quot;, &quot;C&quot;, &quot;D&quot;, &quot;E&quot;, &quot;C&quot;, &quot;A&quot;, &quot;B&quot;),
  3. place=c(&quot;B&quot;, &quot;c&quot;, &quot;F&quot;, &quot;C&quot;, &quot;G&quot;, &quot;A&quot;, &quot;H&quot;, &quot;A&quot;))
  4. data %&gt;%
  5. mutate(
  6. across(.fns = ~ if_else(name == &quot;A&quot;, 1, 0))
  7. )
  8. #&gt; name place
  9. #&gt; 1 1 1
  10. #&gt; 2 0 0
  11. #&gt; 3 0 0
  12. #&gt; 4 0 0
  13. #&gt; 5 0 0
  14. #&gt; 6 0 0
  15. #&gt; 7 1 1
  16. #&gt; 8 0 0

<sup>Created on 2023-01-06 by the reprex package (v2.0.1)</sup>

Or, if you want to replace all value of the data for &#39;A&#39; with 1 or else 0 for other value,

  1. library(dplyr)
  2. data &lt;- data.frame(
  3. name = c(&quot;A&quot;, &quot;B&quot;, &quot;C&quot;, &quot;D&quot;, &quot;E&quot;, &quot;C&quot;, &quot;A&quot;, &quot;B&quot;),
  4. place = c(&quot;B&quot;, &quot;c&quot;, &quot;F&quot;, &quot;C&quot;, &quot;G&quot;, &quot;A&quot;, &quot;H&quot;, &quot;A&quot;)
  5. )
  6. data %&gt;%
  7. mutate(
  8. across(.fns = ~ if_else(.x == &quot;A&quot;, 1, 0))
  9. )
  10. #&gt; name place
  11. #&gt; 1 1 0
  12. #&gt; 2 0 0
  13. #&gt; 3 0 0
  14. #&gt; 4 0 0
  15. #&gt; 5 0 0
  16. #&gt; 6 0 1
  17. #&gt; 7 1 0
  18. #&gt; 8 0 1

<sup>Created on 2023-01-06 by the reprex package (v2.0.1)</sup>

huangapple
  • 本文由 发表于 2023年1月6日 14:19:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/75027598.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定