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 30 31 32
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/type.R
\name{as_data_type}
\alias{as_data_type}
\alias{as_data_type.DataType}
\alias{as_data_type.Field}
\alias{as_data_type.Schema}
\title{Convert an object to an Arrow DataType}
\usage{
as_data_type(x, ...)
\method{as_data_type}{DataType}(x, ...)
\method{as_data_type}{Field}(x, ...)
\method{as_data_type}{Schema}(x, ...)
}
\arguments{
\item{x}{An object to convert to an Arrow \link[=data-type]{DataType}}
\item{...}{Passed to S3 methods.}
}
\value{
A \link[=data-type]{DataType} object.
}
\description{
Convert an object to an Arrow DataType
}
\examples{
as_data_type(int32())
}
|