markschat

Results 13 comments of markschat

> This actually was in `checkmate` some years ago. I've removed it once base R started to introduce custom error classes and I wanted to wait for them to settle....

I just read through this interesting discussion and try to use the shiny-solution provided by @timelyportfolio with plotly. The table shows up with no error, unfortunately no plots are rendered...

> That's because your four plotly graphics have the same id, this is not allowed in HTML. Thanks! Your answer brings the plotly-charts to live 🙌. I still have one...

@stla thank you for your hints! Finally I have found a (simple) way to use `plotly::plot_ly` with the regular `DT::renderDT`/ `DT::DTOutput` functions 🎉 The server-side rendering (DT default) paired with...

> Is PR #949 what you want? @shrektan Your PR nails it! It´s nearly identical 😀 Thank´s for providing some workable code 👏. I just went through all issues to...

Thank´s for this amazing package first - it really shines among all other pkgs out there (functionality, docs, ease of use, ...) It´s just outstanding 👏 I would love to...

For now I use an env var to make a distinction between different setups: setup.R: ``` r if (Sys.getenv("TEST_DB_CON") == "CON1") { # use backend 1 } else if (Sys.getenv("TEST_DB_CON")...

Could´nt give up on the idea of using VSCode as my main IDE for R (dark mode, git integration, JS, ... 🥰). Here is a solution I came up with...

Hi, just wanted to contribute some details (Remote SSH from Win to Linux) - I develop a package that is already installed - run `devtools::document` - run `?my_func` that returns...

Had the same issue (ton of "no visible binding" messages) - e.g. when using `tags$div(...)` from `htmltools` Installing the most current dev-version `devtools::install_github("r-lib/lintr")` solved the issue for me (thank´s for...