1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data-nycflights13.R
\name{nycflights13}
\alias{nycflights13}
\alias{nycflights13_sqlite}
\alias{nycflights13_postgres}
\alias{has_nycflights13}
\alias{copy_nycflights13}
\title{Database versions of the nycflights13 data}
\usage{
nycflights13_sqlite(path = NULL)
nycflights13_postgres(dbname = "nycflights13", ...)
has_nycflights13(type = c("sqlite", "postgresql"), ...)
copy_nycflights13(con, ...)
}
\arguments{
\item{path}{location of SQLite database file}
\item{dbname, ...}{Arguments passed on to \code{\link[=src_postgres]{src_postgres()}}}
}
\description{
These functions cache the data from the \code{nycflights13} database in
a local database, for use in examples and vignettes. Indexes are created
to making joining tables on natural keys efficient.
}
\keyword{internal}
|