blob: b5393a6c8bb36e0e04281e2d3a21f29c4cbf5785 [file] [log] [blame]
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/parquet.R
\name{write_parquet}
\alias{write_parquet}
\title{Write Parquet file to disk}
\usage{
write_parquet(table, file)
}
\arguments{
\item{table}{An \link[=arrow__Table]{arrow::Table}, or an object convertible to it}
\item{file}{a file path}
}
\description{
\href{https://parquet.apache.org/}{Parquet} is a columnar storage file format.
This function enables you to write Parquet files from R.
}
\examples{
\dontrun{
tf <- tempfile(fileext = ".parquet")
write_parquet(tibble::tibble(x = 1:5), tf)
}
}