run.studies | R Documentation |
This function runs the case studies included in the package
run.studies(
TS,
study,
TSextra = list(aaa = 1),
With.p.value = FALSE,
BasicComparison = TRUE,
nsample = 500,
alpha = 0.05,
param_alt,
maxProcessor,
B = 1000
)
TS |
routine to calculate test statistic(s) or p value(s). |
study |
either the name of the study, or its number. If missing all the studies are run. |
TSextra |
=list(aaa=1), list passed to TS. |
With.p.value |
=FALSE does user supplied routine return p values? |
BasicComparison |
=TRUE if true compares tests on one default value of parameter of the alternative distribution. |
nsample |
= 500, desired sample size. |
alpha |
=0.05 type I error |
param_alt |
(list of) values of parameter under the alternative hypothesis. If missing included values are used. |
maxProcessor |
number of cores to use for parallel programming |
B |
= 1000 number of simulation runs |
A (list of ) matrices of p.values
# New test is a simple chi-square test:
chitest=function(x, pnull, param, TSextra) {
nbins=TSextra$nbins
bins=quantile(x, (0:nbins)/nbins)
O=hist(x, bins, plot=FALSE)$counts
if(param[1]!=-99) { #with parameter estimation
E=length(x)*diff(pnull(bins, param))
chi=sum((O-E)^2/E)
pval=1-pchisq(chi, nbins-1-length(param))
}
else {
E=length(x)*diff(pnull(bins))
chi=sum((O-E)^2/E)
pval=1-pchisq(chi,nbins-1)
}
out=ifelse(TSextra$statistic, chi, pval)
names(out)="ChiSquare"
out
}
TSextra=list(nbins=10, statistic=FALSE) # Use 10 bins, test routine returns p-value
run.studies(chitest, TSextra=TSextra, With.p.value=TRUE, maxProcessor=1, B=200)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.