lmiratrix

Results 4 issues of lmiratrix

I believe the following code should print out "res" four times under the first map call below (it does) and also the second (it doesn't). Somehow the indices 1:reps in...

We were working on a simulation and are generating data and fitting XBart multiple times. We found that XBART on a mac is somehow resetting or clobbering the seed so...

Check out ``` dat = tibble( siteID = rep( LETTERS[1:4], each=10 ), X = rnorm( 40 ), Y = X + rnorm( 40 ) ) mod = lm_robust( Y ~...

I run a lot of simulations, and relied heavily on rerun(). The current view is this should be replaced with map( 1:R, ~ one_run() ) rather than rerun( R, one_run()...