As per the title. If I use `stat_density2d(aes(fill = stat(level)), geom = "polygon")` the outer regions are completely warbled. ```r data(airquality) airQ <- filter_all(airquality, ~!is.na(.)) ggplot(airQ, aes(x = Solar.R, y = Temp)) + geom_point() + stat_density2d(aes(fill = stat(level)), geom = "polygon") ``` gives 