Hiroaki Yutani

Results 319 comments of Hiroaki Yutani

Thanks for the quick reply. Glad to hear that! > I would have assumed that geom_text_repel() should be sufficient without an extra function for spatial data I think you are...

Now `geom_sf_text_repel()` and `geom_sf_label_repel()` are basically possible with `stat_sf_coordinates()`. Example: ``` r # github version of ggplot2 library(ggplot2) nc Reading layer `nc' from data source `/Library/Frameworks/R.framework/Versions/3.5/Resources/library/sf/shape/nc.shp' using driver `ESRI Shapefile'...

Yes, I think these functions are worth adding, of course! I want to implement them if you are ok (Sorry for not yet starting on this...). While it seems easy...

This might be related, though I don't remember the details... https://github.com/tidyverse/ggplot2/issues/3175

> specify CSS files, instead of overriding Chartist styles with document styles. Sounds nice! Thanks :+1:

https://github.com/gionkunz/chartist-js/blob/6cc473964e46ab979579d2dab6a95474af658dc5/src/scripts/charts/bar.js#L163-L167 https://github.com/gionkunz/chartist-js/blob/6cc473964e46ab979579d2dab6a95474af658dc5/src/scripts/charts/pie.js#L177-L188

`bar` has `y1` and `y2`, not `y`.

Opps...This was just my mistake. data.frame should be more than two length. So, above should be: ``` r chartist(data[1:4, 1:2], day) + Pie(labelInterpolationFnc = interp) ``` Anyway, checking the data...

I suspect the change introduced by https://github.com/rust-lang/rust-bindgen/pull/1984 relates here as it removed `_bindgen_union_align`, but I'm not sure about the details.