Is there a better way to write this if-else statement?

前端 未结 2 549
情话喂你
情话喂你 2021-01-27 03:03

I am wondering if there is an easier way to create these variables than what I am doing? I am trying to turn the values of my vehicle type variable in to variables themselves.

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-27 03:49

    It is better to use dplyr's syntax. There are some literature to learn how to use the syntax. (https://genomicsclass.github.io/book/pages/dplyr_tutorial.html)

    In the syntax, I usually use case_when function to make several condition rather than ifelse function.

    norm.knnN$gearbox[norm.knnN$gearbox=="automatic"] = 1
    norm.knnN$gearbox[norm.knnN$gearbox=="manual"] = 0
    

    It would be changed to this syntax I mentioned.

     norm.knnN %>%
        mutate(gearbox = case_when(
        gearbox == "automatic" ~ 1,
        gearbox == "manual" ~ 0,
        TRUE ~ NA))
    

提交回复
热议问题