gofReport | R Documentation |
In Methyl-IT, the signal detection step requires for the knowledge of the probability distribution of the methylation noise, which is the null hypothesis used to discriminate the signal from the noise. Both, signal and noise, are expressed in terms of an information divergence of methylation levels, which (currently in Methyl-IT) could be the Hellinger divergence or the total variation distance. As shown in reference (1), on statistical physics basis, the probability distribution of the noise is a member of the generalized gamma distribution. In particular, if the methylation changes on the DNA probability distribution.
Function 'gofReport' search for the best fitted model between the set of models requested by the user. Two goodness-of-fit (GoF) criteria are applied to select the best fitted model: Akaike's information criterion (AIC) and the correlation coefficient of cross-validations for the nonlinear regressions (R.Cross.val) (2). These criteria evaluate different information inferred from the models. AIC deals with the trade-off between the goodness of fit of the model and the complexity of the model, while R.Cross.val provides information on the prediction power/performance of the model when confronted with external dataset.
Although the numerical algorithms to accomplish the nonlinear fit are not
perfect, in general, the model with the lowest AIC must have the highest
R.Cross.val. If the model with the lowest AIC has not the highest
R.Cross.val, then further analyzes are required. These analyzes could include
the visualization of the graphics for the density distribution, evaluation of
whether the parameter values can be meaningful or not, etc. Nevertheless, the
best model will, in general, lead to the identification of the greater amount
of potential DMPs and DMPs, as well as, the highest classification accuracy
estimated with functions estimateCutPoint
and
evaluateDIMPclass
. In the worse scenario, these observations
can ultimately lead to a post-hoc decision on which the best model is.
gofReport(
HD,
model = c("Weibull2P", "Weibull3P", "Gamma2P", "Gamma3P", "GGamma3P", "GGamma4P"),
column = 9,
absolute = FALSE,
output = c("best.model", "all"),
alt_models = FALSE,
r.cv = FALSE,
npoints = NULL,
min.scale = 1e-05,
min.mu = 0.001,
mu.rel.err = 0.89,
num.cores = 1L,
verbose = FALSE,
...
)
## S3 method for class 'ProbDistrList'
print(x, ...)
HD |
An 'InfDiv' object returned by function
|
model |
A character vector naming the models to fit. Default is
model = c('Weibull2P', 'Weibull3P', 'Gamma2P', 'Gamma3P'). See
|
column |
An integer number denoting the index of the GRanges column where
the information divergence is given. Default column = 9, which is the
column where the Hellinger divergence values are reported (by default) by
function |
absolute |
Logic (default, FALSE). Total variation (TV, the difference of methylation levels) is normally an output in the downstream MethylIT analysis. If 'absolute = TRUE', then TV is transformed into |TV|, which is an information divergence that can be fitted as well. |
output |
If output == 'all', the table with the GoF statistics is returned in a list together with the best fitted model and the corresponding statistics. Default is 'best.model' |
alt_models |
logical(1). If TRUE, then the best model based on highest R.Cross.val is returned for those samples where the model(s) with lowest AIC has not the highest R.Cross.val. |
r.cv |
logical(1). Whether to select the best model based on the highest R.Cross.val (2) (see details section). |
npoints |
number of points to be used in the fit. Default is NULL. |
min.scale |
A number. The nonlinear fit of GGamma family distributions sometimes yields weird estimation of the scale parameter with values < 1e-5. Based on our experience, scale parameter values lower than min.scale = 1e-5 are probably meaningless. The result of numerical errors, the nonlinear algorithm are not perfect. |
min.mu, mu.rel.err |
Numbers. Models with location parameter |
num.cores |
The number of cores to use in the nonlinear fit step, i.e.
at most how many child processes will be run simultaneously (see
|
verbose |
If TRUE, prints the function log to stdout |
... |
Further arguments to pass to |
x |
An object from 'ProbDistrList' class |
The best model selection is based on the lowest AIC. However, if
alt_models = TRUE
and r.cv = FALSE
, then the returned list will
contain two sublists named 'alt_models' and 'alt_nlms' with the best model
selected based on the highest R.Cross.val. If r.cv = TRUE
, best model
selection is based on the highest R.Cross.val and sublist named 'alt_models'
will carry the model selected based on the lowest AIC. This sublist is
returned only if at least there is one sample where the model with the lowest
AIC has not the highest R.Cross.val. This report is useful to analyze any
conflict between models. For example, some times the best model selected
based on AIC has a R.Cross.val = 0.99945, while the highest R.Cross.val is
0.99950. In such a situation the model with lowest AIC is still fine.
However, some times the model with the best AIC has some meaningless
parameter value. For example, scale = 0.0000000001 in 'GGamma3P' or in
'Weibull2P' models. This last situation can result from the numerical
algorithm used in the parameter estimation. The numerical algorithms for
nonlinear fit estimation are not perfect!
For distribution models that include a location parameter ('Weibull3P',
'Gamma3P', and 'GGamma4P') there is an additional important constraint, which
cannot be evaluated with 'AIC' or 'R.Cross.val': \mu > 0
. That is, the
information divergences are strictly positive magnitudes, therefore, any best
model in terms of AIC with values \mu < 0
are meaningless and rejected.
If 'output = 'best.model”, a character vector with the name of the
best fitted model for each sample and model statistics, which can be used the
next step to get the potential DMPs with function
getPotentialDIMP
. Otherwise, it will return a list with the
table carrying the GoF values and the previously mentioned data.
Robersy Sanchez 11/25/2019 https://github.com/genomaths
R. Sanchez and S. A. Mackenzie, “Information Thermodynamics of Cytosine DNA Methylation,” PLoS One, vol. 11, no. 3, p. e0150427, Mar. 2016.
Stevens JP. Applied Multivariate Statistics for the Social Sciences. Fifth Edit. Routledge Academic; 2009.
nonlinearFitDist
## Loading information divergence dataset
data(HD)
## Subsetting object HD (for the sake of runnig a faster example)
hd <- lapply(HD, function(x) x[seq_len(100)], keep.attr = TRUE)
## The GoF report
dt <- gofReport(hd)
## Report the model where AIC and R.Cross.val are in conflict.
dt <- gofReport(HD = hd, output = "all", alt_models = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.