Description Usage Arguments Value Note Author(s) See Also Examples
Return a subset of the simulation result of an ezsim object.
1 2 |
x |
An ezsim Object |
subset |
A list contains the subset of estimators and parameters. To select a subset of estimators: |
... |
unused |
sim of ezsim
For internal use of ezsim.
TszKin Julian Chan ctszkin@gmail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
ezsim_basic<-ezsim(
m = 100,
run = TRUE,
display_name = c(mean_hat="hat(mu)",sd_mean_hat="hat(sigma[hat(mu)])"),
parameter_def = createParDef(list(n=seq(20,80,20),mu=c(0,2),sigma=c(1,3,5))),
dgp = function() rnorm(n,mu,sigma),
estimator = function(x) c(mean_hat = mean(x),
sd_mean_hat=sd(x)/sqrt(length(x)-1)),
true_value = function() c(mu, sigma / sqrt(n-1))
)
subset(ezsim_basic,subset=list(estimator='mean_hat',mu=0,n=c(20,40)))
## End(Not run)
|
Testing for estimator...Passed
Testing for estimator parser...Passed
Testing for true value...Passed
Number of Simulation : 100
Estimator :
function (x)
c(mean_hat = mean(x), sd_mean_hat = sd(x)/sqrt(length(x) - 1))
<bytecode: 0x3670c38>
dgp :
function ()
rnorm(n, mu, sigma)
True value of estimator :
function ()
c(mu, sigma/sqrt(n - 1))
Selection Parameters:
$n
[1] 20 40 60 80
$mu
[1] 0 2
$sigma
[1] 1 3 5
Banker Parameters:
list()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.