View source: R/deprec_swim_parse.R
| swim_parse_old | R Documentation |
read_results into a data
frameTakes the output of read_results and cleans it, yielding a data frame
of swimming (and diving) results. Old version, retired in dev build on Dec
21, 2020 and release version 0.7.0
swim_parse_old(
file,
avoid = avoid_default,
typo = typo_default,
replacement = replacement_default,
splits = FALSE,
split_length = 50,
relay_swimmers = FALSE
)
file |
output from |
avoid |
a list of strings. Rows in |
typo |
a list of strings that are typos in the original results.
|
replacement |
a list of fixes for the strings in |
splits |
either |
split_length |
either |
relay_swimmers |
either |
returns a data frame with columns Name, Place,
Age, Team, Prelims_Time, Finals_Time,
Points, Event & DQ. Note all swims will have a
Finals_Time, even if that time was actually swam in the prelims
(i.e. a swimmer did not qualify for finals). This is so that final results
for an event can be generated from just one column.
swim_parse_old must be run on the output of
read_results
## Not run:
swim_parse_old(
read_results("http://www.nyhsswim.com/Results/Boys/2008/NYS/Single.htm", node = "pre"),
typo = c("-1NORTH ROCKL"), replacement = c("1-NORTH ROCKL"),
splits = TRUE,
relay_swimmers = TRUE)
## End(Not run)
## Not run:
swim_parse_old(read_results("inst/extdata/Texas-Florida-Indiana.pdf"),
typo = c("Indiana University", ", University of"), replacement = c("Indiana University", ""),
splits = TRUE,
relay_swimmers = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.