control_density_v1 {zcurve} | R Documentation |
Control settings for the original z-curve density algorithm
Description
All settings are passed to the density fitting
algorithm. All unspecified settings are set to the default value.
Setting model = "KD1"
sets all settings to the default
value irrespective of any other setting and fits z-curve as described
in Brunner and Schimmack (2020).
Arguments
version |
Set to |
model |
A type of model to be fitted, defaults to |
sig_level |
An alpha level of the test statistics, defaults to
|
a |
A beginning of fitting interval, defaults to
|
b |
An end of fitting interval, defaults to |
K |
Number of mixture components, defaults to |
max_iter |
A maximum number of iterations for the nlminb
optimization for fitting mixture model, defaults to |
max_eval |
A maximum number of evaluation for the nlminb
optimization for fitting mixture model, defaults to |
criterion |
A criterion to terminate nlminb optimization,
defaults to |
bw |
A bandwidth of the kernel density estimation, defaults to |
References
Brunner J, Schimmack U (2020). “Estimating population mean power under conditions of heterogeneity and selection for significance.” Meta-Psychology, 4. doi:10.15626/MP.2018.874.
See Also
zcurve()
, control_density, control_EM
Examples
# to increase the number of iterations
ctrl <- list(
version = 1,
max_iter = 300
)
## Not run: zcurve(OSC.z, method = "density", control = ctrl)