diff --git a/doc/index.html b/doc/index.html index c0bf00d..55b9189 100644 --- a/doc/index.html +++ b/doc/index.html @@ -108,7 +108,7 @@
Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:020.3% of total for procedures.
Including implementation: 146 statements, 9.8% of total for procedures.">5 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02The resulting statistic.
Defines the signature of a function for computing the desired @@ -191,7 +191,7 @@
Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:020.3% of total for procedures.
Including implementation: 31 statements, 2.1% of total for procedures.">4 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:020.3% of total for procedures.
Including implementation: 23 statements, 1.5% of total for procedures.">4 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02The value of the function.
Defines the interface for a probability distribution function.
@@ -205,7 +205,7 @@Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02The property value.
Computes the value of a distribution property.
@@ -190,7 +190,7 @@Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:020.3% of total for procedures.
Including implementation: 32 statements, 2.2% of total for procedures.">4 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Computes a linear least-squares regression to fit a set of data. -Bootstrapping is utilized to gain insight into the quality of -the fit. Resampling for the bootstrap process is a random resampling -with replacement process with the range of values limited by the -standard deviation of the original data set.
Performs a nonlinear regression to fit a model using a version -of the Levenberg-Marquardt algorithm. Bootstrapping is utilized to gain -insight into the quality of the fit. Resampling for the bootstrap -process is a random resampling with replacement process with the -range of values limited by the standard deviation of the original -data set.
Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Defines a binomial distribution. The binomial distribution describes the probability p of getting k successes in n independent trials.
A container for regression-related statistical information as -computed in a bootstrap, or equivalent, calculation.
Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02A container for regression-related statistical information as -computed in a bootstrap, or equivalent, calculation.
- -Type | -Visibility | Attributes | -- | Name | -Initial | - | |
---|---|---|---|---|---|---|---|
- - real(kind=real64), - | -public | -- - | -:: | -lower_confidence_interval | -- | - |
- The lower limit of the confidence interval for the parameter. - |
-
- - real(kind=real64), - | -public | -- - | -:: | -probability | -- | - |
- The probability that the coefficient is not statistically -important. A statistically important coefficient will have a -low probability (p-value), typically 0.05 or lower; however, a -p-value of up to ~0.2 may be acceptable dependent upon the -problem. Typically any p-value larger than ~0.2 indicates the -parameter is not statistically important for the model. |
-
- - real(kind=real64), - | -public | -- - | -:: | -standard_error | -- | - |
- The standard error for the model coefficient. - |
-
- - real(kind=real64), - | -public | -- - | -:: | -t_statistic | -- | - |
- The T-statistic for the model coefficient. |
-
- - real(kind=real64), - | -public | -- - | -:: | -upper_confidence_interval | -- | - |
- The upper limit of the confidence interval for the parameter. - |
-
Computes a linear least-squares regression to fit a set of data. -Bootstrapping is utilized to gain insight into the quality of -the fit. Resampling for the bootstrap process is a random resampling -with replacement process with the range of values limited by the -standard deviation of the original data set.
- -Type | -Intent | Optional | Attributes | -- | Name | -- |
---|---|---|---|---|---|---|
- - integer(kind=int32), - | -intent(in) | -- - | -:: | -order | -
- The order of the equation to fit. This value must be at -least one (linear equation), but can be higher as desired, -as long as there is sufficient data. - |
- |
- - logical, - | -intent(in) | -- - | -:: | -intercept | -
- Set to true if the intercept is being computed as part of -the regression; else, false. - |
- |
- - real(kind=real64), - | -intent(in), | -- dimension(:) - | -:: | -x | -
- An N-element array containing the independent variable -measurement points. - |
- |
- - real(kind=real64), - | -intent(in), | -- dimension(:) - | -:: | -y | -
- An N-element array containing the dependent variable -measurement points. - |
- |
- - real(kind=real64), - | -intent(out), | -- dimension(:) - | -:: | -coeffs | -
- An ORDER+1 element array where the coefficients will -be written. - |
- |
- - real(kind=real64), - | -intent(out), | -- dimension(:) - | -:: | -ymod | -
- An N-element array where the modeled data will be written. - |
- |
- - real(kind=real64), - | -intent(out), | -- dimension(:) - | -:: | -resid | -
- An N-element array where the residual error data will be -written (modeled - actual). - |
- |
- - integer(kind=int32), - | -intent(in), | -optional | - - | -:: | -nsamples | -
- The number of bootstrapping samples to utilize. - |
-
- - type(bootstrap_regression_statistics), - | -intent(out), | -optional, | - dimension(:) - | -:: | -stats | -
- An M-element array of bootstrap_regression_statistics items -where M = ORDER + 1 when intercept is set to true; however, -if intercept is set to false, M = ORDER. - |
-
- - real(kind=real64), - | -intent(out), | -optional, | - dimension(:) - | -:: | -bias | -
- An ORDER+1 element array where an estimate of the bias of -each coefficient is returned based upon the results of the -bootstrapping analysis. The bias is computed as the difference -between the mean of the boostrap population results for the given -parameter and the original estimate of the given parameter. - |
-
- - real(kind=real64), - | -intent(in), | -optional | - - | -:: | -alpha | -
- The significance level at which to evaluate the confidence -intervals. The default value is 0.05 such that a 95% -confidence interval is calculated. - |
-
- - procedure(bootstrap_resampling_routine), - | -intent(in), | -optional, | - pointer - | -:: | -method | -
- An optional pointer to the method to use for resampling of the data. -If no method is supplied, a random resampling is utilized. - |
-
- - real(kind=real64), - | -intent(out), | -optional, | - allocatable, target, dimension(:,:) - | -:: | -bscoeffs | -
- An optional, allocatable matrix, containing the bootstrap -distributions for each parameter stored in each row of the matrix -such that the resulting matrix is NCOEFFS -by- NSAMPLES. - |
-
- - class(errors), - | -intent(inout), | -optional, | - target - | -:: | -err | -
- A mechanism for communicating errors and warnings to the -caller. Possible warning and error codes are as follows. -- FS_NO_ERROR: No errors encountered. -- FS_ARRAY_SIZE_ERROR: Occurs if any of the arrays are not - approriately sized. -- FS_INVALID_INPUT_ERROR: Occurs if order is less than 1. -- FS_MEMORY_ERROR: Occurs if there is a memory allocation - error. - |
-
Performs a nonlinear regression to fit a model using a version -of the Levenberg-Marquardt algorithm. Bootstrapping is utilized to gain -insight into the quality of the fit. Resampling for the bootstrap -process is a random resampling with replacement process with the -range of values limited by the standard deviation of the original -data set.
- -Type | -Intent | Optional | Attributes | -- | Name | -- |
---|---|---|---|---|---|---|
- - procedure(regression_function), - | -intent(in), | -- pointer - | -:: | -fun | -
- A pointer to the regression_function to evaluate. - |
- |
- - real(kind=real64), - | -intent(in) | -- - | -:: | -x(:) | -
- The M-element array containing independent data. - |
- |
- - real(kind=real64), - | -intent(in) | -- - | -:: | -y(:) | -
- The M-element array containing dependent data. - |
- |
- - real(kind=real64), - | -intent(inout) | -- - | -:: | -params(:) | -
- On input, the N-element array containing the initial estimate -of the model parameters. On output, the computed model -parameters. - |
- |
- - real(kind=real64), - | -intent(out) | -- - | -:: | -ymod(:) | -
- An M-element array where the modeled dependent data will -be written. - |
- |
- - real(kind=real64), - | -intent(out) | -- - | -:: | -resid(:) | -
- An M-element array where the model residuals will be -written. - |
- |
- - integer(kind=int32), - | -intent(in), | -optional | - - | -:: | -nsamples | -
- The number of bootstrapping samples to utilize. - |
-
- - real(kind=real64), - | -intent(in), | -optional, | - target - | -:: | -weights(:) | -
- An optional M-element array allowing the weighting of -individual points. - |
-
- - real(kind=real64), - | -intent(in), | -optional, | - target - | -:: | -maxp(:) | -
- An optional N-element array that can be used as upper limits -on the parameter values. If no upper limit is requested for -a particular parameter, utilize a very large value. The -internal default is to utilize huge() as a value. - |
-
- - real(kind=real64), - | -intent(in), | -optional, | - target - | -:: | -minp(:) | -
- An optional N-element array that can be used as lower limits -on the parameter values. If no lower limit is requested for -a particalar parameter, utilize a very large magnitude, but -negative, value. The internal default is to utilize -huge() -as a value. - |
-
- - type(bootstrap_regression_statistics), - | -intent(out), | -optional | - - | -:: | -stats(:) | -
- An optional N-element array that, if supplied, will be used -to return statistics about the fit for each parameter. - |
-
- - real(kind=real64), - | -intent(in), | -optional | - - | -:: | -alpha | -
- The significance level at which to evaluate the confidence -intervals. The default value is 0.05 such that a 95% -confidence interval is calculated. - |
-
- - type(iteration_controls), - | -intent(in), | -optional | - - | -:: | -controls | -
- An optional input providing custom iteration controls. - |
-
- - type(lm_solver_options), - | -intent(in), | -optional | - - | -:: | -settings | -
- An optional input providing custom settings for the solver. - |
-
- - type(convergence_info), - | -intent(out), | -optional, | - target - | -:: | -info | -
- An optional output that can be used to gain information about -the iterative solution and the nature of the convergence. - |
-
- - real(kind=real64), - | -intent(out), | -optional, | - dimension(:) - | -:: | -bias | -
- An optional N-element array that, if supplied, will be used to -provide an estimate of the bias of each model parameter based upon -the results of the bootstrapping analysis. The bias is computed as -the difference between the mean of the boostrap population results -for the given parameter and the original estimate of the given -parameter. - |
-
- - procedure(bootstrap_resampling_routine), - | -intent(in), | -optional, | - pointer - | -:: | -method | -
- An optional pointer to the method to use for resampling of the data. -If no method is supplied, a random resampling is utilized. - |
-
- - real(kind=real64), - | -intent(out), | -optional, | - allocatable, target, dimension(:,:) - | -:: | -bscoeffs | -
- An optional, allocatable matrix, containing the bootstrap -distributions for each parameter stored in each row of the matrix -such that the resulting matrix is NCOEFFS -by- NSAMPLES. - |
-
- - class(errors), - | -intent(inout), | -optional, | - target - | -:: | -err | -
- A mechanism for communicating errors and warnings to the -caller. Possible warning and error codes are as follows. -- FS_NO_ERROR: No errors encountered. -- FS_ARRAY_SIZE_ERROR: Occurs if any of the arrays are not - properly sized. -- FS_MEMORY_ERROR: Occurs if there is a memory allocation - error. -- FS_UNDERDEFINED_PROBLEM_ERROR: Occurs if the problem posed - is underdetetermined (M < N). -- FS_TOLERANCE_TOO_SMALL_ERROR: Occurs if any supplied - tolerances are too small to be practical. -- FS_TOO_FEW_ITERATION_ERROR: Occurs if too few iterations - are allowed. - |
-
Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02The standard error for the model coefficient.
The standard error for the model coefficient.
The T-statistic for the model coefficient.
The T-statistic for the model coefficient.
Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Computes a linear least-squares regression to fit a set of data. -Bootstrapping is utilized to gain insight into the quality of -the fit. Resampling for the bootstrap process is a random resampling -with replacement process with the range of values limited by the -standard deviation of the original data set.
- - -Type | -Intent | Optional | Attributes | -- | Name | -- |
---|---|---|---|---|---|---|
- - integer(kind=int32), - | -intent(in) | -- - | -:: | -order | -
- The order of the equation to fit. This value must be at -least one (linear equation), but can be higher as desired, -as long as there is sufficient data. - |
- |
- - logical, - | -intent(in) | -- - | -:: | -intercept | -
- Set to true if the intercept is being computed as part of -the regression; else, false. - |
- |
- - real(kind=real64), - | -intent(in), | -- dimension(:) - | -:: | -x | -
- An N-element array containing the independent variable -measurement points. - |
- |
- - real(kind=real64), - | -intent(in), | -- dimension(:) - | -:: | -y | -
- An N-element array containing the dependent variable -measurement points. - |
- |
- - real(kind=real64), - | -intent(out), | -- dimension(:) - | -:: | -coeffs | -
- An ORDER+1 element array where the coefficients will -be written. - |
- |
- - real(kind=real64), - | -intent(out), | -- dimension(:) - | -:: | -ymod | -
- An N-element array where the modeled data will be written. - |
- |
- - real(kind=real64), - | -intent(out), | -- dimension(:) - | -:: | -resid | -
- An N-element array where the residual error data will be -written (modeled - actual). - |
- |
- - integer(kind=int32), - | -intent(in), | -optional | - - | -:: | -nsamples | -
- The number of bootstrapping samples to utilize. - |
-
- - type(bootstrap_regression_statistics), - | -intent(out), | -optional, | - dimension(:) - | -:: | -stats | -
- An M-element array of bootstrap_regression_statistics items -where M = ORDER + 1 when intercept is set to true; however, -if intercept is set to false, M = ORDER. - |
-
- - real(kind=real64), - | -intent(out), | -optional, | - dimension(:) - | -:: | -bias | -
- An ORDER+1 element array where an estimate of the bias of -each coefficient is returned based upon the results of the -bootstrapping analysis. The bias is computed as the difference -between the mean of the boostrap population results for the given -parameter and the original estimate of the given parameter. - |
-
- - real(kind=real64), - | -intent(in), | -optional | - - | -:: | -alpha | -
- The significance level at which to evaluate the confidence -intervals. The default value is 0.05 such that a 95% -confidence interval is calculated. - |
-
- - procedure(bootstrap_resampling_routine), - | -intent(in), | -optional, | - pointer - | -:: | -method | -
- An optional pointer to the method to use for resampling of the data. -If no method is supplied, a random resampling is utilized. - |
-
- - real(kind=real64), - | -intent(out), | -optional, | - allocatable, target, dimension(:,:) - | -:: | -bscoeffs | -
- An optional, allocatable matrix, containing the bootstrap -distributions for each parameter stored in each row of the matrix -such that the resulting matrix is NCOEFFS -by- NSAMPLES. - |
-
- - class(errors), - | -intent(inout), | -optional, | - target - | -:: | -err | -
- A mechanism for communicating errors and warnings to the -caller. Possible warning and error codes are as follows. -- FS_NO_ERROR: No errors encountered. -- FS_ARRAY_SIZE_ERROR: Occurs if any of the arrays are not - approriately sized. -- FS_INVALID_INPUT_ERROR: Occurs if order is less than 1. -- FS_MEMORY_ERROR: Occurs if there is a memory allocation - error. - |
-
Performs a nonlinear regression to fit a model using a version -of the Levenberg-Marquardt algorithm. Bootstrapping is utilized to gain -insight into the quality of the fit. Resampling for the bootstrap -process is a random resampling with replacement process with the -range of values limited by the standard deviation of the original -data set.
- - -Type | -Intent | Optional | Attributes | -- | Name | -- |
---|---|---|---|---|---|---|
- - procedure(regression_function), - | -intent(in), | -- pointer - | -:: | -fun | -
- A pointer to the regression_function to evaluate. - |
- |
- - real(kind=real64), - | -intent(in) | -- - | -:: | -x(:) | -
- The M-element array containing independent data. - |
- |
- - real(kind=real64), - | -intent(in) | -- - | -:: | -y(:) | -
- The M-element array containing dependent data. - |
- |
- - real(kind=real64), - | -intent(inout) | -- - | -:: | -params(:) | -
- On input, the N-element array containing the initial estimate -of the model parameters. On output, the computed model -parameters. - |
- |
- - real(kind=real64), - | -intent(out) | -- - | -:: | -ymod(:) | -
- An M-element array where the modeled dependent data will -be written. - |
- |
- - real(kind=real64), - | -intent(out) | -- - | -:: | -resid(:) | -
- An M-element array where the model residuals will be -written. - |
- |
- - integer(kind=int32), - | -intent(in), | -optional | - - | -:: | -nsamples | -
- The number of bootstrapping samples to utilize. - |
-
- - real(kind=real64), - | -intent(in), | -optional, | - target - | -:: | -weights(:) | -
- An optional M-element array allowing the weighting of -individual points. - |
-
- - real(kind=real64), - | -intent(in), | -optional, | - target - | -:: | -maxp(:) | -
- An optional N-element array that can be used as upper limits -on the parameter values. If no upper limit is requested for -a particular parameter, utilize a very large value. The -internal default is to utilize huge() as a value. - |
-
- - real(kind=real64), - | -intent(in), | -optional, | - target - | -:: | -minp(:) | -
- An optional N-element array that can be used as lower limits -on the parameter values. If no lower limit is requested for -a particalar parameter, utilize a very large magnitude, but -negative, value. The internal default is to utilize -huge() -as a value. - |
-
- - type(bootstrap_regression_statistics), - | -intent(out), | -optional | - - | -:: | -stats(:) | -
- An optional N-element array that, if supplied, will be used -to return statistics about the fit for each parameter. - |
-
- - real(kind=real64), - | -intent(in), | -optional | - - | -:: | -alpha | -
- The significance level at which to evaluate the confidence -intervals. The default value is 0.05 such that a 95% -confidence interval is calculated. - |
-
- - type(iteration_controls), - | -intent(in), | -optional | - - | -:: | -controls | -
- An optional input providing custom iteration controls. - |
-
- - type(lm_solver_options), - | -intent(in), | -optional | - - | -:: | -settings | -
- An optional input providing custom settings for the solver. - |
-
- - type(convergence_info), - | -intent(out), | -optional, | - target - | -:: | -info | -
- An optional output that can be used to gain information about -the iterative solution and the nature of the convergence. - |
-
- - real(kind=real64), - | -intent(out), | -optional, | - dimension(:) - | -:: | -bias | -
- An optional N-element array that, if supplied, will be used to -provide an estimate of the bias of each model parameter based upon -the results of the bootstrapping analysis. The bias is computed as -the difference between the mean of the boostrap population results -for the given parameter and the original estimate of the given -parameter. - |
-
- - procedure(bootstrap_resampling_routine), - | -intent(in), | -optional, | - pointer - | -:: | -method | -
- An optional pointer to the method to use for resampling of the data. -If no method is supplied, a random resampling is utilized. - |
-
- - real(kind=real64), - | -intent(out), | -optional, | - allocatable, target, dimension(:,:) - | -:: | -bscoeffs | -
- An optional, allocatable matrix, containing the bootstrap -distributions for each parameter stored in each row of the matrix -such that the resulting matrix is NCOEFFS -by- NSAMPLES. - |
-
- - class(errors), - | -intent(inout), | -optional, | - target - | -:: | -err | -
- A mechanism for communicating errors and warnings to the -caller. Possible warning and error codes are as follows. -- FS_NO_ERROR: No errors encountered. -- FS_ARRAY_SIZE_ERROR: Occurs if any of the arrays are not - properly sized. -- FS_MEMORY_ERROR: Occurs if there is a memory allocation - error. -- FS_UNDERDEFINED_PROBLEM_ERROR: Occurs if the problem posed - is underdetetermined (M < N). -- FS_TOLERANCE_TOO_SMALL_ERROR: Occurs if any supplied - tolerances are too small to be practical. -- FS_TOO_FEW_ITERATION_ERROR: Occurs if too few iterations - are allowed. - |
-
Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02Documentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:025.1% of total for derived types.
Including implementation: 7 statements, 1.5% of total for derived types.">7 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:022.2% of total for derived types.
Including implementation: 3 statements, 0.6% of total for derived types.">3 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:028.0% of total for derived types.
Including implementation: 66 statements, 13.9% of total for derived types.">11 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02A container for regression-related statistical information as -computed in a bootstrap, or equivalent, calculation.
-Type | -Visibility | Attributes | -- | Name | -Initial | - | |
---|---|---|---|---|---|---|---|
- - real(kind=real64), - | -public | -- - | -:: | -lower_confidence_interval | -- | - |
- The lower limit of the confidence interval for the parameter. - |
-
- - real(kind=real64), - | -public | -- - | -:: | -probability | -- | - |
- The probability that the coefficient is not statistically -important. A statistically important coefficient will have a -low probability (p-value), typically 0.05 or lower; however, a -p-value of up to ~0.2 may be acceptable dependent upon the -problem. Typically any p-value larger than ~0.2 indicates the -parameter is not statistically important for the model. -- - - |
-
- - real(kind=real64), - | -public | -- - | -:: | -standard_error | -- | - |
- The standard error for the model coefficient. - |
-
- - real(kind=real64), - | -public | -- - | -:: | -t_statistic | -- | - |
- The T-statistic for the model coefficient. -- - - |
-
- - real(kind=real64), - | -public | -- - | -:: | -upper_confidence_interval | -- | - |
- The upper limit of the confidence interval for the parameter. - |
-
5.8% of total for derived types.
Including implementation: 8 statements, 1.7% of total for derived types.">8 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:027.2% of total for derived types.
Including implementation: 65 statements, 13.7% of total for derived types.">10 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:029.4% of total for derived types.
Including implementation: 13 statements, 2.7% of total for derived types.">13 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:027.2% of total for derived types.
Including implementation: 29 statements, 6.1% of total for derived types.">10 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:028.0% of total for derived types.
Including implementation: 83 statements, 17.4% of total for derived types.">11 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:028.0% of total for derived types.
Including implementation: 21 statements, 4.4% of total for derived types.">11 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:025.8% of total for derived types.
Including implementation: 15 statements, 3.2% of total for derived types.">8 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:028.7% of total for derived types.
Including implementation: 68 statements, 14.3% of total for derived types.">12 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:024.3% of total for derived types.
Including implementation: 6 statements, 1.3% of total for derived types.">6 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:025.8% of total for derived types.
Including implementation: 8 statements, 1.7% of total for derived types.">8 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:027.2% of total for derived types.
Including implementation: 74 statements, 15.5% of total for derived types.">10 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:027.2% of total for derived types.
Including implementation: 10 statements, 2.1% of total for derived types.">10 statementsDocumentation generated by FORD - on 2024-05-01 05:45
+ on 2024-06-03 08:02