Hi guys, just started learning R and I am using the ToothGrowth data set in R to learn basic functions. I am getting
"Error in filter(ToothGrowth, dose == 0.5) : object 'dose' not found" when I try to assign and filter data.
Below is the code I have written
. can anyone help why this is happening?
data("ToothGrowth")
View(ToothGrowth)
install.packages('dbplyr')
library(dbplyr)
filtered_tg <- filter(ToothGrowth,dose==0.5)