I am a new user/student to R programming. I have a problem in viewing below code in R script, even though I already set following
data("ToothGrowth")
View(ToothGrowth)
install.packages("dplyr")
library(dplyr)
filter_growth <- ToothGrowth %>%
filter(dose==0.5) %>%
group_by(supp) %>%
arrange(len)