Learn R Programming

dataset (version 0.3.1)

dataset_to_triples: Dataset to triples (three columns)

Description

The dataset is converted into a three-column long format with columns s for subject, p for predicate and o for object.

Usage

dataset_to_triples(x, idcol = NULL)

Value

The long form version of the original dataset, retaining the attributes and class.

Arguments

x

An R object that contains the data of the dataset (a data.frame or inherited from data.frame), for example, dataset() tibble::tibble(), tsibble::tsibble(), data.table::data.table().

idcol

The identifier column. If idcol is NULL it attempts to use the row.names(df) as an idcol.