R Under development (unstable) (2025-01-25 r87633 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > > library(zigg) > options(digits=7) > > N <- 1e5 > zsetseed(12345) > > rn <- zrnorm(N) > summary(rn) Min. 1st Qu. Median Mean 3rd Qu. Max. -4.493650 -0.678462 -0.001353 -0.001309 0.677760 4.358705 > > re <- zrexp(N) > summary(re) Min. 1st Qu. Median Mean 3rd Qu. Max. 3.300e-06 2.904e-01 6.939e-01 1.017e+00 1.385e+00 1.365e+01 > > ru <- zrunif(N) > summary(ru) Min. 1st Qu. Median Mean 3rd Qu. Max. 2.425e-05 2.506e-01 5.012e-01 5.012e-01 7.525e-01 1.000e+00 > > zsetseed(12345) > all.equal(rn, zrnorm(N)) [1] TRUE > all.equal(re, zrexp(N)) [1] TRUE > all.equal(ru, zrunif(N)) [1] TRUE > > proc.time() user system elapsed 0.12 0.06 0.17