-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathdata.R
More file actions
32 lines (29 loc) · 686 Bytes
/
data.R
File metadata and controls
32 lines (29 loc) · 686 Bytes
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
#' Sample character vectors for practicing string manipulations
#'
#' `fruit` and `words` come from the `rcorpora` package
#' written by Gabor Csardi; the data was collected by Darius Kazemi
#' and made available at \url{https://github.com/dariusk/corpora}.
#' `sentences` is a collection of "Harvard sentences" used for
#' standardised testing of voice.
#'
#' @format Character vectors.
#' @name stringr-data
#' @examples
#' length(sentences)
#' sentences[1:5]
#'
#' length(fruit)
#' fruit[1:5]
#'
#' length(words)
#' words[1:5]
NULL
#' @rdname stringr-data
#' @format NULL
"sentences"
#' @rdname stringr-data
#' @format NULL
"fruit"
#' @rdname stringr-data
#' @format NULL
"words"