describe {dataset}R Documentation

Describe a dataset

Description

Describe a dataset

Usage

describe(x, con = NULL)

Arguments

x

A dataset_df object.

con

A connection, for example, con=tempfile().

Value

The description of the dataset_df object is written to the connection in the N-Triples form. If con=NULL, then the serialisation takes place in tempfile() and the contents are printed to the console; if a file is given, than no output is returned.

Examples


# See the serialisation on the screen:
describe(orange_df)

# Save it to a connection:
temporary_connection <- tempfile()
describe(orange_df, con = temporary_connection)

[Package dataset version 0.3.9 Index]