https://github.com/ijlyttle/ussie
https://github.com/ijlyttle/ussie
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ijlyttle/ussie
- Owner: ijlyttle
- License: other
- Created: 2022-07-07T22:04:38.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-12T16:00:57.000Z (almost 4 years ago)
- Last Synced: 2025-10-11T15:07:00.703Z (9 months ago)
- Language: R
- Homepage: https://ijlyttle.github.io/ussie/
- Size: 986 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# ussie
[](https://github.com/ijlyttle/ussie/actions/workflows/R-CMD-check.yaml)
The goal of ussie is to help you work with European Football League data.
## Installation
You can install the development version of ussie from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("ijlyttle/ussie")
```
## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(ussie)
library(dplyr)
italy <- uss_make_matches(engsoccerdata::italy, "Italy")
glimpse(italy)
```