flat_table {rolap} | R Documentation |
flat_table
S3 class
Description
Creates a flat_table
object.
Usage
flat_table(name = NULL, instances, unknown_value = NULL)
Arguments
name |
A string. |
instances |
A |
unknown_value |
A string, value used to replace empty and NA values in attributes. |
Details
The objective is to allow the transformation of flat tables.
We indicate the name of the flat table and we can also give the value that will be used to replace NA or empty values.
Value
A flat_table
object.
See Also
Other flat table definition functions:
as_star_database()
,
get_table()
,
get_unknown_value_defined()
,
get_unknown_values()
,
read_flat_table_file()
,
read_flat_table_folder()
Examples
ft <- flat_table('iris', iris)
ft <- flat_table('ft_num', ft_num)
[Package rolap version 2.5.1 Index]