datasets.write_table {foundry}R Documentation

Writes a data.frame to a Foundry dataset.

Description

Writes a data.frame to a Foundry dataset.

Usage

datasets.write_table(data, alias)

Arguments

data

A data.frame or an arrow Table.

alias

The alias representing the Dataset.

Column types

Note that types may not be exactly preserved and all types are not supported. See https://arrow.apache.org/docs/r/articles/arrow.html for details on type conversions from a data.frame to an arrow Table. Use arrow::Table$create to use more granular types.

Row Names

Row names are silently removed.

Examples

## Not run: 
datasets.write_table(mtcars, "my_output")

## End(Not run)


[Package foundry version 0.13.0 Index]