Re: R Filterfunktion
Verfasst: Do Mär 14, 2019 2:23 pm
Juhuuuu,
es hat endlich geklappt
Tausend Dank.
Ich habe jetzt folgenden Code verwendet
Eine frage habe noch: Kann ich diesen Code jetzt noch in einer neuen Tabelle irgendwie abspeichern? Zuvor hatte ich folgenden Code verwendet:
Students.neu <- Students %>%
bekommt man das irgendwie auch so hin?
Tausend Dank nochmal 
es hat endlich geklappt

Ich habe jetzt folgenden Code verwendet
Code: Alles auswählen
subset(Students,(parental.level.of.education == "high school" | parental.level.of.education == "bachelor's degree") & race.ethnicity == "group C")
Students.neu <- Students %>%
bekommt man das irgendwie auch so hin?
Code: Alles auswählen
Students.neu <- Students %>%
subset(Students,(parental.level.of.education == "high school" | parental.level.of.education == "bachelor's degree") & race.ethnicity == "group C")
