Stefan Moog

Results 23 comments of Stefan Moog

Hi Carson. First. Sorry for messing up the commit history. - I folllowed your suggestions for simplifying the code, removing the duplicated code and renaming the variables. - After commiting...

I just added the visual tests to the PR. However, running the visual tests against the docker image failed with the message "there is no package called 'ggalt'". If I...

This issue is most likely due to a change introduced in `ggplot2 3.4.0` which now defaults to `stat="align"` (which does some form of interpolation) for `geom_area` and which is not...

As an illustration of the fix proposed by @teunbrand and as a possible workaround one can manually set `show.legend=TRUE` for the `geom_point` layer like so: ``` r library(numbat) #> Loading...

Hi David, thanks for the suggestion. I prepared a first draft for a pull request to implement this functionality building on `body_bookmark`. Hence I called the function `body_comment`. (: If...

The issue was cross-posted [here](https://github.com/kharchenkolab/numbat/issues/182) and as the comments by @teunbrand make clear is due to the recent change in `ggplot2` which now requires to set `show.legend=TRUE` in the geom...

And here is a more detailed description of the issue and the proposed fix: The underlying issue is that `ggplotly()` creates a strip text for facet rows/cols even if these...

@kwilson62 Will have a look if I find the time. But first let's finish this PR. (:

This feature is only available in the. dev version, i.e. version `0.5.0` (see the version number on the pkgdown site): ``` r library(ggplot2) library(ggforce) packageVersion("ggforce") #> [1] '0.5.0' ggplot(iris, aes(Petal.Length,...

Hey @davidgohel. I had a look at the issue. 1. The underlying issue is that `page_size/margins` default to `NULL` and hence no defaults are set due to: https://github.com/davidgohel/officedown/blob/2c9ec3339acdb5c2f63ece237794941fdc01e0ea/R/rdocx_document.R#L199-L204 2. The...