Skip to contents

Creates a flat_table object.

Usage

flat_table(name = NULL, instances, unknown_value = NULL)

Arguments

name

A string.

instances

A tibble, table of instances.

unknown_value

A string, value used to replace empty and NA values in attributes.

Value

A flat_table object.

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.

Examples


ft <- flat_table('iris', iris)

ft <- flat_table('ft_num', ft_num)