-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
43 lines (30 loc) · 3.16 KB
/
Copy pathREADME.Rmd
File metadata and controls
43 lines (30 loc) · 3.16 KB
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
38
39
40
41
42
43
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "tools/README-"
)
```
# volleyxml
<!-- badges: start -->
[](https://www.tidyverse.org/lifecycle/#experimental)

[](https://github.com/openvolley/volleyxml/actions)
<!-- badges: end -->
An R package for reading volleyball scouting files in the [hudl](https://www.hudl.com/sports/volleyball) XML format. Files in this format can be exported from scouting apps including [iStatVball 2](http://www.istatvball.com/), [SoloStats Live](https://www.solostatslive.com/solostats-live.html), and others. (This R package is not affiliated with or endorsed by hudl or any of these scouting apps.)
See also the [datavolley R package](https://github.com/openvolley/datavolley) for handling DataVolley files. The data structures and conventions used by `volleyxml` have been chosen to be similar to those of the `datavolley` package.
## Installation
```{r eval = FALSE}
remotes::install_github("openvolley/volleyxml")
```
## Example
Read the example data file bundled with the package:
```{r}
library(volleyxml)
x <- vx_read(vx_example_file())
summary(x)
```