https://github.com/hadley/dplyr
Raw File
Tip revision: f0a55d6b1248e31230694ebbbcfa0e58d024e49a authored by Kirill Müller on 02 March 2016, 12:41:45 UTC
Merge branch 'release/0.2' into production
Tip revision: f0a55d6
type_sum.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/type-sum.r
\name{type_sum}
\alias{type_sum}
\title{Provide a succint summary of a type}
\usage{
type_sum(x)
}
\arguments{
\item{x}{an object to summarise. Generally only methods of atomic vectors
and variants have been implemented.}
}
\description{
All methods should return a string with four or less characters, suitable
for succinctly display column types.
}
\examples{
type_sum(1:10)
type_sum(matrix(1:10))
type_sum(Sys.Date())
type_sum(Sys.time())
type_sum(mean)
}
\keyword{internal}

back to top