Palmer Penguins datasets

Hi. I want to install the Palmer penguins datasets into R studio but I'm getting the message, "penguins is not available for this version of R. How do i get around this? Thanks

I am pretty sure the package you are looking for is called palmerpenguins, not penguins.

So, to install the package on the machine you're working on

install.packages("palmerpenguins")

And then to load the package and data

library(palmerpenguins)
data(package = 'palmerpenguins')

Find more details at

1 Like

This topic was automatically closed 21 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.