Error - Toothgrowth data not found

I'm new to R can anyone please help with this error

data("Toothgrowth")
Warning message:
In data("Toothgrowth") : data set ‘Toothgrowth’ not found

Hi!

See below.
Make sure you have the datasets package installed and loaded.
Also pay attention to capitalisation Toothgrowth is not the same as ToothGrowth.

Have fun with R!

install.packages("datasets")
library(datasets)
data("ToothGrowth")

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.