atusy

Results 43 issues of atusy

- Packages are byte compiled by default since R 3.5.0 (cf. https://cran.r-project.org/doc/manuals/r-release/NEWS.3.html) - We do not need to specify the `ByteCompile` logical filed on the `DESCRIPTION` file. It is turned...

For easy specification of `template` and `grid` arguments in `grid_layout` https://developer.mozilla.org/en-US/docs/Web/CSS/grid https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template

This PR aims to solve #1336. Currently, I find two problems that needs someone's help - [ ] Support navigation to inactive tabs - Otherwise, users have to click the...

`number-sections.lua` enables numbering sections for formats without it. However, current implementation lacks the support for `--number-offset`. Unfortunately, there is no way to tell Lua filter the value of `--number-offset`. Thus,...

By this PR, we can convert ggplot to plotly by implementing `gginteractive()`. In addition, `gginteractive` has the `interactive` argument to control the conversion. ```r ggplot(mtcars, aes(wt, mpg)) + geom_point() +...

Knitr generates multiple figures in one line when a chunk generates multiple figures continuously. For example, ```` ```{r echo=FALSE, fig.cap = c('cap1', 'cap2')} plot(1) plot(2) ``` ```` becomes something like...

In this way, we can use advanced way of selections. Below is an example that choses only `double` vectors in `facet_matrix`. ``` r library(ggplot2) library(ggforce) ggplot(palmerpenguins::penguins) + geom_autopoint() + facet_matrix(vars(where(is.double)))...

This PR implements `stat_err()` which draws intervals of points in x- and y- directions. A following example shows that `stat_err()` appears to be more intuitive than the combination of `geom_errorbar`...

By this PR, math in facets' stripe becomes quite easy. ![image](https://user-images.githubusercontent.com/30277794/62988487-93b8da00-be7f-11e9-8cb8-5eeb81f2c79c.png) ```r library(dplyr) library(ggplot2) library(ggforce) d % mutate(y = dnorm(x)) ggplot(d, aes(x, y)) + geom_line() + facet_wrap(~ facet, labeller =...

Regarding to https://github.com/rstudio/revealjs/pull/57 , CSS in some frameworks possibly cause messy results on leaflet tiles. This PR fixes it. Here is an example messy result with revealjs (see reprex section...