Hello,
I'm trying to generate many dataframes using map.
The names of each dataframes are related to the values of one variable.
I wrote this:
mpg %>%
split(.$manufacturer) %>%
map(~.x)
And I would like to view the dataframes named:
audi
chevrolet
dodge
ford
honda
hyundai
jeep
land rover
lincoln
mercury
nissan
pontiac
subaru
toyota
volkswagen
On my data panel. It's very simple, but I'm stuck.
As always, thanks for your time and interest.
Have a nice weekend