Ben Schneider

Results 12 issues of Ben Schneider

For some reason I'm able to specify `alternative = 'greater'` but not `alternative = 'less'` in `pwr.2p.test()`, although it seems to me like both options should be valid and return...

This PR brings `as_survey_rep()` up-to-date with an update to `svrepdesign()` in the latest release of the 'survey' package. https://cran.r-project.org/web/packages/survey/NEWS > allow user to specify degf= in svrepdesign to avoid needing...

This fixes #159 to ensure that filtering of calibrated/PPS/twophase designs works in the special case where filtering removes every row in the dataset. I used an `if` statement based on...

While looking into #156, I noticed that there is a bug when subsetting calibrated or PPS designs (which are the kinds where the weights are set to 0 rather than...

The JuliaConnectoR package is currently the most stable interface to Julia from R, not only because of the TCP-based design but also because the main alternative, JuliaCall, seems to be...

In this proof, you claim that ``` $ D_r \circ D_s = \{(a,b) \in R \times R \mid |a-b| < s + r\}$ ``` but you only proved that ```...

## Feature Request In the documentation for `bootstraps()`, note that the bootstrap method assumes data come from independent simple random samples (potentially within strata), and provide a reference about when...

documentation

This small PR uses a more robust method for checking whether a file can be read, addressing a longstanding problem with accessing files on network drives. I think it would...

# Summary The `checkAccess()` function currently fails to correctly check read access for files on a network drive, because it relies on the base R function `file.access()`, which has long...

The function `autocorrelation()` doesn't return any values, unlike the function `autocovariance()`. Below is a reprex: ``` r library(posterior) #> This is posterior version 1.6.0 #> #> Attaching package: 'posterior' #>...