Procedures

ProcedureLocationProcedure TypeDescription
adjusted_r_squared fstats_regression Function

Computes the adjusted R-squared value for a data set.

Read more…
allan_variance fstats_allan Function

Computes the Allan variance of a data set.

Read more…
anova fstats_anova Interface

Performs an analysis of variance (ANOVA) on the supplied data set.

Read more…
bartletts_test fstats_hypothesis Subroutine

Computes Bartlett's test statistic and associated probability.

Read more…
beta fstats_special_functions Function

Computes the beta function.

Read more…
bootstrap fstats_bootstrap Function

Performs a bootstrap calculation on the supplied data set for the given statistic. The default implementation utlizes a random resampling based upon a normal distribution. Other resampling methods may be defined by specifying an appropriate routine by means of the method input.

bootstrap_resampling_routine fstats_bootstrap Interface
bootstrap_statistic_routine fstats_bootstrap Interface
box_muller_sample fstats_sampling Function

Utilizes the Box-Muller transformation approach to generate the requested number of random samples from a normal distribution of the specified mean and standard deviation.

calculate_regression_statistics fstats_regression Function

Computes statistics for the quality of fit for a regression model.

central_composite_design fstats_experimental_design Subroutine

Generates a central composite design in coded variables.

Read more…
central_composite_design_size fstats_experimental_design Subroutine

Computes the size of a central composite design.

Read more…
confidence_interval fstats_hypothesis Interface

Computes the confidence interval for the specified distribution.

Read more…
correlation fstats_regression Function

Computes the sample correlation coefficient (an estimate to the population Pearson correlation) as follows.

Read more…
covariance fstats_descriptive_statistics Function

Computes the sample covariance of two data sets.

Read more…
covariance_matrix fstats_regression Function

Computes the covariance matrix where and is computed by design_matrix.

Read more…
decode_variables fstats_experimental_design Subroutine

Converts coded variable values (-1, +1) to natural scale.

design_matrix fstats_regression Function

Computes the design matrix for the linear least-squares regression problem of , where is the matrix computed here, is the vector of coefficients to be determined, and is the vector of measured dependent variables.

Read more…
difference fstats_helper_routines Function

Computes the difference between elements in an array.

digamma fstats_special_functions Function

Computes the digamma function.

Read more…
distribution_function fstats_distributions Interface
distribution_property fstats_distributions Interface
distribution_recenter fstats_distributions Interface
doe_compare_models fstats_experimental_design Function
doe_design_efficiency fstats_experimental_design Function
doe_evaluate_model fstats_experimental_design Interface
doe_fit_model fstats_experimental_design Function

Fits a Taylor series model to the provided data.

Read more…
doe_model_anova fstats_experimental_design Function
doe_model_diagnostics fstats_experimental_design Function

Computes model diagnostics and goodness-of-fit metrics.

doe_optimize_rsm fstats_experimental_design Function
doe_predict fstats_experimental_design Function

Computes predictions with confidence and prediction intervals.

doe_predict_enhanced fstats_experimental_design Function
doe_residuals_analysis fstats_experimental_design Function

Computes residual analysis data for model diagnostics.

encode_variables fstats_experimental_design Subroutine

Converts natural variable values to coded (-1, +1) scale.

evaluate_model fstats_mcmc Interface
f_test fstats_hypothesis Subroutine

Computes the F-test and returns the probability (two-tailed) that the variances of two data sets are not significantly different.

Read more…
factorial fstats_helper_routines Function

Computes the factorial of X.

fractional_factorial fstats_experimental_design Subroutine

Generates a 2-level fractional factorial design.

Read more…
fractional_factorial_size fstats_experimental_design Subroutine

Computes the size of a fractional factorial design.

Read more…
full_factorial fstats_experimental_design Subroutine

Computes a table with values scaled from 1 to N describing a full-factorial design.

Read more…
get_full_factorial_matrix_size fstats_experimental_design Subroutine

Computes the appropriate size for a full-factorial design table.

incomplete_beta fstats_special_functions Function

Computes the incomplete beta function.

Read more…
incomplete_gamma_lower fstats_special_functions Function

Computes the lower incomplete gamma function.

Read more…
incomplete_gamma_upper fstats_special_functions Function

Computes the upper incomplete gamma function.

Read more…
interp_routine fstats_interp Interface
iteration_update fstats_regression Interface
jacobian fstats_regression Subroutine

Computes the Jacobian matrix for a nonlinear regression problem.

latin_hypercube_design fstats_experimental_design Subroutine

Generates a Latin hypercube design for factor space exploration.

Read more…
levenes_test fstats_hypothesis Subroutine

Computes Levene's test statistic and associated probability.

Read more…
linear_least_squares fstats_regression Subroutine

Computes a linear least-squares regression to fit a set of data.

Read more…
lowess fstats_smoothing Subroutine

Computes the smoothing of a data set using a robust locally weighted scatterplot smoothing (LOWESS) algorithm. Fitted values are computed at each of the supplied x values.

Read more…
mean fstats_descriptive_statistics Function

Computes the mean of the values in an array.

median fstats_descriptive_statistics Function

Computes the median of the values in an array.

multivariate_distribution_function fstats_distributions Interface
nonlinear_least_squares fstats_regression Subroutine

Performs a nonlinear regression to fit a model using a version of the Levenberg-Marquardt algorithm.

pooled_variance fstats_descriptive_statistics Interface

Computes the pooled estimate of variance.

quantile fstats_descriptive_statistics Function

Computes the specified quantile of a data set using the SAS Method 4.

Read more…
r_squared fstats_regression Function

Computes the R-squared value for a data set.

Read more…
random_resample fstats_bootstrap Subroutine

Random resampling based upon a normal distribution.

random_resample_with_replacement fstats_bootstrap Subroutine

Random resampling with replacement from the supplied sample.

regression_function fstats_regression Interface
regularized_beta fstats_special_functions Function

Computes the regularized beta function.

Read more…
rejection_sample fstats_sampling Function

Uses rejection sampling to randomly sample a target distribution.

sample_normal_multivariate fstats_sampling Function

Samples a multivariate normal distribution such that , where is the lower form of the Cholesky factorization of the covariance matrix, and is a randomly generated vector that exists on the set

sample_size fstats_hypothesis Function

Estimates the sample size required to achieve an experiment with the desired power and significance levels to ascertain the desired difference in parameter.

Read more…
standard_deviation fstats_descriptive_statistics Function

Computes the sample standard deviation of the values in an array.

Read more…
t_test_equal_variance fstats_hypothesis Subroutine

Computes the 2-tailed Student's T-Test for two data sets of assumed equivalent variances.

Read more…
t_test_paired fstats_hypothesis Subroutine

Computes the 2-tailed Student's T-Test for two paired data sets.

Read more…
t_test_unequal_variance fstats_hypothesis Subroutine

Computes the 2-tailed Student's T-Test for two data sets of assumed non-equivalent variances.

Read more…
trimmed_mean fstats_descriptive_statistics Function

Computes the trimmed mean of a data set.

variance fstats_descriptive_statistics Function

Computes the sample variance of the values in an array.

Read more…