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 33 34 35 36 37
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data.R
\docType{data}
\name{stringr-data}
\alias{stringr-data}
\alias{sentences}
\alias{fruit}
\alias{words}
\title{Sample character vectors for practicing string manipulations}
\format{
Character vectors.
}
\usage{
sentences
fruit
words
}
\description{
\code{fruit} and \code{words} come from the \code{rcorpora} package
written by Gabor Csardi; the data was collected by Darius Kazemi
and made available at \url{https://github.com/dariusk/corpora}.
\code{sentences} is a collection of "Harvard sentences" used for
standardised testing of voice.
}
\examples{
length(sentences)
sentences[1:5]
length(fruit)
fruit[1:5]
length(words)
words[1:5]
}
\keyword{datasets}
|