Description Usage Arguments Value Author(s) See Also
The function betareg_optimize minimizes the negative log
likelihood of the Beta regression model Since it cannot be evaluated
analytically, an optimization procedure is used. The
optim
packages is used for performing optimization.
1 2 3 4 5 6 7 8 9 10 11 12 | betareg_optim(x, ...)
## S3 method for class 'list'
betareg_optim(x, w = NULL, disp = 1, basis = NULL,
fit_feature = "RMSE", cpg_dens_feat = TRUE, lambda = 1/2,
opt_method = "CG", opt_itnmax = 100, is_parallel = TRUE,
no_cores = NULL, ...)
## S3 method for class 'matrix'
betareg_optim(x, w = NULL, disp = 1, basis = NULL,
fit_feature = "RMSE", cpg_dens_feat = TRUE, lambda = 1/2,
opt_method = "CG", opt_itnmax = 100, ...)
|
x |
The input object, either a |
... |
Additional parameters. |
w |
A vector of parameters (i.e. coefficients of the basis functions) |
disp |
Dispersion parameter/vector for Beta distribution |
basis |
A 'basis' object. E.g. see |
fit_feature |
Return additional feature on how well the profile fits the methylation data. Either NULL for ignoring this feature or one of the following: 1) "RMSE" for returning the fit of the profile using the RMSE as measure of error or 2) "NLL" for returning the fit of the profile using the Negative Log Likelihood as measure of error. |
cpg_dens_feat |
Logical, whether to return an additional feature for the CpG density across the promoter region. |
lambda |
The complexity penalty coefficient for ridge regression. |
opt_method |
The optimization method to be used. See
|
opt_itnmax |
Optional argument giving the maximum number of iterations
for the corresponding method. See |
is_parallel |
Logical, indicating if code should be run in parallel. |
no_cores |
Number of cores to be used, default is max_no_cores - 2. |
Depending on the input object x
:
If x
is
a list
: An object containing the following elements:
W_opt
: An Nx(M+1) matrix with the optimized
parameter values. Each row of the matrix corresponds to each element of the
list x. The columns are of the same length as the parameter vector w (i.e.
number of basis functions).
Mus
: An N x M matrix with the
RBF centers if basis object is create_rbf_object
, otherwise
NULL.
basis
: The basis object.
w
: The
initial values of the parameters w.
If x
is a
matrix
: An object containing the following elements:
w_opt
: Optimized values for the coefficient vector
w. The length of the result is the same as the length of the vector w.
basis
: The basis object.
If calling
bpr_optim_fast
just the optimal weight matrix W_opt.
C.A.Kapourani C.A.Kapourani@ed.ac.uk
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.