valueType_list {mlstrOpalr} | R Documentation |
Built-in tibble of allowed valueType values
Description
Provides a built-in tibble showing the list of allowed Opal valueType values and their corresponding R data types. This tibble is mainly used for internal processes and programming.
Usage
valueType_list
Format
tibble
A data frame with 12 rows and 6 columns:
- valueType
data type as described in Opal
- typeof
data type provided by base::typeof
- class
data class provided by base::class
- call
function to transpose object according base::do.call function
- toValueType
ensemble data type as described in Opal
- toTypeof
ensemble data type provided by base::typeof
- genericType
ensemble data type which valueType belongs
...
Details
The valueType is a property of a variable and is required in certain
functions to determine the handling of the variables. The valueType refers
to the OBiBa-internal type of a variable. It is specified in a data
dictionary in a column valueType
and can be associated with variables as
attributes. Acceptable valueTypes include 'text', 'integer', 'decimal',
'boolean', datetime', 'date'). The full list of OBiBa valueType
possibilities and their correspondence with R data types are available using
valueType_list.
See Also
Examples
{
valueType_list
}