Skip to content

Instantly share code, notes, and snippets.

@nopps07
Created March 12, 2021 09:10
Show Gist options
  • Save nopps07/03f986be73a53c2dc4131d461eeed9e9 to your computer and use it in GitHub Desktop.
Save nopps07/03f986be73a53c2dc4131d461eeed9e9 to your computer and use it in GitHub Desktop.
{r Data Manipulation1}
library(dplyr)
binwine <- wine %>%
mutate(quality = ifelse(quality > 5, "Good", "Bad"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment