We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This leads to trouble when trying to pass n to stat_density2d in geom_density2d.
n
stat_density2d
geom_density2d
set.seed(42) df <- data.frame(x=runif(100),y=runif(100)) library(ggplot2) ggplot(df,aes(x,y)) + geom_density2d(stat='density2d', n = 100) #Error: is.logical(na.rm) is not TRUE ggplot(df,aes(x,y)) + geom_density2d(stat='density2d', na.rm = TRUE, n = 100) #works
Reported here: http://stackoverflow.com/q/34749125/1412059
The text was updated successfully, but these errors were encountered:
28f8ae4
No branches or pull requests
This leads to trouble when trying to pass
n
tostat_density2d
ingeom_density2d
.Reported here: http://stackoverflow.com/q/34749125/1412059
The text was updated successfully, but these errors were encountered: