Looking for mtcars package

I am new and need a bit of help. I'm kind of stuck.
I am looking for the "mtcars" data package library.
I downloaded R, upgraded to R Studio, installed ggplot2, set CRAN mirror, uploaded libraries..but I can't find "mtcars" in the data list and it says the version of the package might be available elsewhere.

**Can anyone know where and how I can find it?
Thanks in advance.

mtcars is not a package. It's a dataset included in the package datasets, which you most likely already have installed.

mtcars is part of the datasets package that you should already have.
Run

data("mtcars")

Here is how to load the mtcars data.

data(mtcars)

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.