Etienne Bacher

Results 141 comments of Etienne Bacher

@vitorleonel Thank you for this idea, but the whole body is highlighted in white behind the popover. I know I need to add `opacity: 0` to `driver-highlighted-element-stage` but only for...

Nevermind, just saw [this answer](https://github.com/kamranahmedse/driver.js/issues/67#issuecomment-784225141) in #67

The reason is that the code block in Details in `reformat_md()` was not properly parsed. Possible to use the following code and to remove custom `rd2md()` once https://github.com/quantsch/Rd2md/issues/6 has been...

Hello, I just stumbled on this PR, and I was wondering if you had thought of a way to include chunk options as well. I find it useful to show...

Well I don't have a clear-cut opinion on how chunk options info should be displayed and implemented, I just wanted to make sure that they wouldn't be forgotten in the...

I couldn't make it work with `purrr::map()` but here's an example that works with a `for` loop: ````r --- output: rmarkdown::pdf_document --- ```{r} library(tidyverse) library(parameters) lm( cty ~ manufacturer, data...

Hello, this issue comes from these lines in `insight:::model_info.default()` which are called by `performance::check_model`: https://github.com/easystats/insight/blob/e104d8a95c59c7092b5712e29da0118b05ced215/R/model_info.R#L116-L124 This is because `stats::family()` apparently returns less info than with other objects: ```r > class(glm_fit$fit)...

This is the content of the vignette "Overview of vignettes", so it isn't related to `_pkgdown.yml`, it has to be changed in the vignette directly. Unless I'm missing something?

The code of the demo is [here](https://github.com/RinteRface/shinydashboardPlus/blob/master/inst/examples/app.R). Basically, the code to have alternatively a logo and a title is: ```r library(shiny) library(shinydashboardPlus) shinyApp( ui = tagList( dashboardPage( options = list(sidebarExpandOnHover...

The problem is that you give the same id ("textsample") to two outputs which makes none of them appear. You need to give two different ids. Regarding your second comment,...