DescribeX {GaSP} | R Documentation |
Describe the input variables.
Description
Describe the input variables to set up integration or summation ranges
for Visualize
.
Usage
DescribeX(
x_names,
x_min,
x_max,
support = NULL,
num_levels = NULL,
distribution = NULL
)
Arguments
x_names |
A vector of character strings containing the names of the input variables. |
x_min , x_max |
Vectors of the same length as |
support |
Optional vector of character strings of the same length
as |
num_levels |
An optional vector of integers for the number of levels of each input;
must be present if the |
distribution |
An optional vector of character strings of the same length
as |
Value
A data frame with the following columns:
Variable
(containing x_names
), Min
(containing x_min
),
and Max
(containing x_max
),
plus the optional columns Support
(from support
),
NumberLevels
(from num_levels
), and
Distribution
(from distribution
).
Note
Does not check against GaSPModel
and all characters are CASE SENSITIVE.
Examples
borehole_x_names <- colnames(borehole$x)
borehole_min <- c(0.05, 100.00, 63070.00, 990.00, 63.10, 700.00, 1120.00, 9855.00)
borehole_max <- c(0.15, 50000.00, 115600.00, 1110.00, 116.00, 820.00, 1680.00, 12045.00)
borehole_x_desc <- DescribeX(borehole_x_names, borehole_min, borehole_max)