Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

Already on GitHub? Sign in to your account

Automatically fill in x for univariate boxplot #2110

Open
hadley opened this Issue Apr 17, 2017 · 1 comment

Comments

Projects
None yet
3 participants
Owner

hadley commented Apr 17, 2017

i.e. make this work

ggplot(mtcars, aes(y = disp)) + geom_boxplot()
Contributor

foo-bar-baz-qux commented Jul 9, 2017

Presumably the output would look the same as if x was the same for all y then?

ggplot(mtcars, aes(x = '1', y = disp)) + geom_boxplot()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment