| srgamma_optimize | R Documentation |
The srgamma_optimize() function generates an optimized proposal for a targeted Gamma distribution.
The proposal can be customized and adjusted based on various options provided by the user.
srgamma_optimize(
shape = NULL,
rate = NULL,
scale = NULL,
xl = NULL,
xr = NULL,
steps = 4091,
proposal_range = NULL,
theta = 0.1,
target_sample_size = 1000,
verbose = FALSE
)
shape |
(optional) Numeric. The shape parameter ( |
rate |
(optional) Numeric. The rate parameter ( |
scale |
(optional) Numeric. The scale parameter of the Gamma distribution. Defaults to |
xl |
Numeric. Left truncation bound for the target distribution. Defaults to |
xr |
Numeric. Right truncation bound for the target distribution. Defaults to |
steps |
(optional) Integer. Desired number of steps in the proposal. Defaults to |
proposal_range |
(optional) Numeric vector. Specifies the range for optimizing the steps part of the proposal. Defaults to |
theta |
Numeric. A parameter for proposal optimization. Defaults to 0.1. |
target_sample_size |
(optional) Integer. Target sample size for proposal optimization. Defaults to |
verbose |
Boolean. If |
When srgamma_optimize() is explicitly called:
A proposal is created and cached. If no parameters are provided, a standard proposal is created with shape = 1 and rate = 1.
Providing shape and rate creates a custom proposal, which is cached for use with srgamma_custom().
The optimization process can be controlled via parameters such as steps, proposal_range, or
theta. If no parameters are provided, the proposal is optimized via brute force based on the
target_sample_size.
A list containing the optimized proposal and related parameters for the specified Gamma distribution. The proposal is also cached for internal use.
dataDetailed information about the proposal steps, including x, s_upper, p_a, and s_upper_lower.
areasThe areas under the left tail, steps, and right tail of the proposal distribution.
steps_numberThe number of steps in the proposal.
f_paramsThe parameters (shape and rate) of the Gamma distribution.
srgamma_custom: Function to sample from a custom proposal generated by srgamma_optimize().
# Generate a standard proposal with shape = 1 and rate = 1
standard_proposal <- srgamma_optimize()
# Generate a custom proposal with shape = 2 and rate = 3
custom_proposal <- srgamma_optimize(shape = 2, rate = 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.