Results 8 issues of Matthew Schuelke

Added support for shiny progress indicator based on the [RStudio complex example](https://shiny.rstudio.com/articles/progress.html#a-more-complex-progress-example). This pull request directly addresses issue #305 and partially addresses issue #272. Comments were used in the travis...

Sometimes API endpoints are defined such that they have fields contained in the path that need to be substituted for prior to issuing the request. For example: ``` r library(rapiclient)...

Added a `stand.alone` argument to `serVis()` to produce a stand alone html file with all includes provided inline. This makes sharing results with others easier and avoids [Cross-Origin Resource Sharing](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)...

I would like to be able to perform the following (working) command line curl command using {curl} as the specific API I am uploading to does not otherwise support specifying...

Addresses Issue #275. The correlation between drat and gear is now listed as 0.70 and not 0.7. ``` r library(dplyr) library(corrplot) M select(gear, am, drat) |> cor() corrplot( M, type...

The correlation between drat and gear is listed as 0.7 and not 0.70. ``` r library(dplyr) library(corrplot) M select(gear, am, drat) |> cor() corrplot( M, type = "lower", diag =...

The current version of setup-r generates an error on `macos-latest` due to an attempt to `brew unlink r` when R is not already installed via Homebrew as discussed in #864...

The R-CMD-check workflow [here](https://github.com/GuangchuangYu/badger/actions/runs/9427854795/workflow) is reported as being successful but also produces the error "macOS-latest (R release) No such keg: /opt/homebrew/Cellar/r" as can be seen [here](https://github.com/GuangchuangYu/badger/actions/runs/9427854795). I have traced the...