Bryan Shalloway
Bryan Shalloway
Just wanted to note that that I experienced the exact same issue noted here https://github.com/ropensci/magick/issues/160#issue-385603303 when also trying `animation::im.convert()` on my video. (The solution referenced here by @dmi3kno using `ffmpeg`...
"confidence interval" as used in {modeltime} refers to "prediction interval" in the sense that Hyndman means in [The difference between prediction intervals and confidence intervals](https://robjhyndman.com/hyndsight/intervals/), correct? Reference for [modeltime_forecast](https://business-science.github.io/modeltime/reference/modeltime_forecast.html) seems...
Thanks for all the great work at r-weekly! I think I may have submitted my feed incorrectly. I noticed at least one of my posts was retweeted by rweekly_live [here](https://rweekly.org/submit)...
Add support for quantile linear regression, e.g. ```{r} library(parsnip) linear_reg() %>% set_engine("quantreg", tau = 0.50) %>% set_mode("quantiles") # maybe unnecessary... see #85 ``` (This issue stems from Rstudio Community [thread](https://community.rstudio.com/t/prediction-intervals-with-tidymodels-best-practices/82594/21)...
Please see SO question: https://stackoverflow.com/questions/58722758/how-to-specify-firefox-browser-version-for-rseleniumrs-driver
The example [here](https://textfeatures.mikewk.com/index.html) does not seem to be outputting correctly. (Note, was working, but updated my version of R along with several packages -- see session info. and now does...
I'm getting the following error when running `import::from()` from the debugger after loading a personal package. ```R import::from("purrr", "map", .into = "explictpackage:purrr", .character_only = TRUE) #> Error in as.environment(where) :...
Specifically on [Data mask programming patterns](https://rlang.r-lib.org/reference/topic-data-mask-programming.html#transforming-inputs-with-across-) (#1307 ). ## Move Argument Behaviors Consider moving "Argument behaviours" section to a separate vignette or somewhere else within the "Data Mask Programming Behaviors"....
I was trying to recreate this example I made with `pwiser` https://gist.github.com/brshallo/01496b68adef88a71de1fd44f3712b10 using `dplyover` but ran into this error: ```r library(tidyverse) if (!require(dplyover) ) remotes::install_github("TimTeaFan/dplyover") penguins % na.omit() t_test_statistic %...
Would be very nice if dplyover "just worked" with dplyr backends. E.g. dbplyr, dtplyr, multidplyr, etc.