Hadley Wickham

Results 1530 comments of Hadley Wickham

@gorcha it's only going to affect a relatively small number of folks, and I suspect threading the logic through to the right place will be moderately complicated, so I'd only...

Unfortunately there's no easy way to track down what went wrong here 😞

@gorcha does this ring any bells with you? I don't think anything has changed in haven relating to this, so it might be a readstat bug?

@evanmiller as usual I've forgotten how everything works, but this seems like it might be a ReadStat issue? (I still see the problem with today's ReadStat)

Converting other types to a string is fine since this is fundamentally a string based input. Converting `NA` to `"NA"` is not because it is changing the meaning within a...

Slightly more minimal reprex: ``` r library(ggplot2) ggplot() + annotate("label", x = 0, y = 0, label = "text", hjust = c(0, 1), size = 20, ) ``` ![](https://i.imgur.com/k26uDO1.png) Created...

@aijordan a PR with those changes would be great thanks! Do you also want to look into the freqpoly padding issue?

I suggest we just copy `geom_histogram()` ``` r library(ggplot2) ggplot(diamonds, aes(x, y)) + geom_density() #> Error in `check_required_aesthetics()`: #> ! geom_density requires the following missing aesthetics: y ggplot(diamonds, aes(x, y))...