Description Usage Arguments Value See Also Examples
general_T
is a (higher-order) general function that generates a
prediction expression for a family of Taguchi (T) methods. Each T method
can be implemented by setting the parameters of this function appropriately.
1 2 |
unit_space_data |
Matrix with n rows (samples) and (p + 1) columns
(variables). The 1 ~ p th columns are independent
variables and the (p + 1) th column is a dependent
variable. Underlying data to obtain a representative
point for the normalization of the
|
signal_space_data |
Matrix with m rows (samples) and (p + 1) columns (variables). The 1 ~ p th columns are independent variables and the (p + 1) th column is a dependent variable. Underlying data to generate a prediction expression. All data should be continuous values and should not have missing values. |
generates_transform_functions |
A function that takes the
|
subtracts_V_e |
If |
includes_transformed_data |
If |
A list containing the following components is returned.
beta_hat |
Vector with length q. Estimated proportionality constants between each independent variable and the dependent variable. |
subtracts_V_e |
Logical. If |
eta_hat |
Vector with length q. Estimated squared signal-to-noise
ratios (S/N) coresponding to |
M_hat |
Vector with length n. The estimated values of the dependent
variable after the data transformation for
|
overall_prediction_eta |
Numeric. The overall squared signal-to-noise ratio (S/N). |
transforms_independent_data |
Data transformation function generated
from |
transforms_dependent_data |
Data transformation function generated in
|
inverses_transformed_dependent_data |
Inverse function generated in the
|
m |
The number of samples for |
q |
The number of independent variables after the data transformation. According to the data transoformation function, q may be equal to p. |
X |
If |
M |
If |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # The value of the dependent variable of the following samples mediates
# in the stackloss dataset.
stackloss_center <- stackloss[c(9, 10, 11, 20, 21), ]
# The following samples are data other than the unit space data and the test
# data.
stackloss_signal <- stackloss[-c(2, 9, 10, 11, 12, 19, 20, 21), ]
# The following settings are same as the T1 method.
model <- general_T(unit_space_data = stackloss_center,
signal_space_data = stackloss_signal,
generates_transform_functions =
generates_transformation_functions_T1,
subtracts_V_e = TRUE,
includes_transformed_data = TRUE)
(model$M_hat)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.