Ethan Brown
Ethan Brown
I found the following behavior surprising: ```r library(daff) example(diff_data) # creates the "dd" patch save(dd, file = "patch_loading.Rdata") load("patch_loading.Rdata") dd ## Error in context_eval(join(src), private$context) : ## Context has been...
`tidyverse::tidyverse_conflicts()` gives what I think is an extraneous conflict between `dplyr::filter()` and `simpr::filter()`, even though `simpr::filter()` is just a re-export of the generic S3 method of `dplyr::filter()`. ``` r suppressPackageStartupMessages(library(simpr))...
`print.sonify()` produces voluminous console output during the interface with Csound. It would be good to have an option to suppress this, possibly a `quiet=T` option. (Suggested by Jens Hegg)
This would probably be alternative timbres for `shape_dotplot()`, and would help give it a touch of historical flair. Would require new Csound instrument but may already be implemented well [on...
Is the data provided US only? If so, can that be made more clear in the documentation? After spending several hours setting up and figuring out this package I found...
`generate()` doesn't clearly discuss fact that `simpr` already includes futures. Also, `vignette("Optimization")` should be `vignette("optimization")`. HT @FallingPineapples
If something is already written as a simulation package, the only way to interface `simpr` with that package is to have that package simulate one value at a time, which...
Ignores unnamed arguments: ``` r library(simpr) #> #> Attaching package: 'simpr' #> The following object is masked from 'package:stats': #> #> filter #> The following objects are masked from 'package:base':...
Currently `specify` generates a warning and no output when arguments have differing numbers of rows: ``` r suppressPackageStartupMessages(library(simpr)) sim = specify(pre = ~ rnorm(n1), post = ~ rnorm(n2)) %>% define(n1...
This is confusing for users of other tidiers, such as those provided by `broom.mixed`, and somewhat works against the purpose of having general methods in `generics`.