describe | R Documentation |
Describe a dataset
describe(x, con = NULL)
x |
A dataset_df object. |
con |
A connection, for example, |
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.
# See the serialisation on the screen:
describe(orange_df)
# Save it to a connection:
temporary_connection <- tempfile()
describe(orange_df, con = temporary_connection)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.