r4ds-exercise-solutions icon indicating copy to clipboard operation
r4ds-exercise-solutions copied to clipboard

3.7.1 Statistical Transformations

Open robtpitts opened this issue 3 years ago • 0 comments

The given code:

ggplot(data = diamonds) + geom_pointrange( mapping = aes(x = cut, y = depth), stat = "summary", fun.min = min, fun.max = max, fun = median )

produces: Warning: Ignoring unknown parameters: fun.min, fun.max, fun No summary function supplied, defaulting to `mean_se()

and does not produce the given graph.

image

robtpitts avatar Jun 07 '22 03:06 robtpitts