I am trying to plot all my variables in one go, using ggplot and facet_wrap. However, I am not able to make the code work.
My dataset is a variety of categorial and numeric variables and I want the x-vaiable for all to be the same.
What I have done:
data %>%
keep(is.numeric) %>%
gather() %>%
ggplot(aes(value))+
geom_point(~ key)
facet_wrap(~ key)
I have also tried
The problem is nothing appears, or there is a missing a y-variable...
I hope that someone can help me move forward from this challenge.