Andrew Heiss
Andrew Heiss
So, it turns out that deleting the .do file is a little less trivial than I thought. Actually deleting it takes one line of code and is super simple. The...
Whoa, one super easy fix that requires no additional work is to chomp the final newline in the YAML multiline block with a `-` **testing.md** ``` text --- title: |-...
Has there been any progress on this? Do e-mails get sent out after reviews are completed, or does Publons accept GitHub issues as proof? Thanks!
This continues to be an issue, but there's a temporary workaround [here](https://stackoverflow.com/a/71771178/120898). You can inject `color: black;` into the inline CSS for the kableExtra table by modifying the existing `print.kableExtra()`...
@haozhu233 Would adding `x
I have run into this issue, but haven't figured out a way around it yet. ☹️
@amoeba I think that all sounds great, as long as the API supports them.
Oh neat, that fixes it!
Using `scale_y_product` solves this most of the way, but it requires that breaks and labels be manually defined: ``` r ggplot(data=happy) + geom_mosaic(aes(x=product(sex, marital), fill=sex)) + scale_y_product(breaks=c(0.25, 0.75), labels=c("Male", "Female"))...
It works with the latest version installed with `devtools::install_package("haleyjeppson/ggmosaic")`. It seems that `scale_y_product` has been replaced with `scale_y_productlist`, which now handles all the breaking and labeling by itself: ``` r...