-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
66 lines (50 loc) · 3.17 KB
/
README.Rmd
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# loterrrias <img src="man/figures/logo.png" align="right" height="139" />
<!-- badges: start -->
[![R-CMD-Check](https://github.com/AlceuPantoni/loterrrias/actions/workflows/R-CMD-check.yaml/badge.svg?branch=main)](https://github.com/AlceuPantoni/loterrrias/actions/workflows/R-CMD-check.yaml) [![update-data](https://github.com/AlceuPantoni/loterrrias/actions/workflows/update-data.yaml/badge.svg)](https://github.com/AlceuPantoni/loterrrias/actions/workflows/update-data.yaml) [![test-coverage](https://github.com/AlceuPantoni/loterrrias/actions/workflows/test-coverage.yaml/badge.svg?branch=main)](https://github.com/AlceuPantoni/loterrrias/actions/workflows/test-coverage.yaml) [![Codecov test coverage](https://codecov.io/gh/AlceuPantoni/loterrrias/branch/main/graph/badge.svg)](https://codecov.io/gh/AlceuPantoni/loterrrias?branch=main)
<!-- badges: end -->
Este pacote tem por objetivo disponilizar os dados de diversos produtos das Loterias da Caixa.
Os dados foram obtidos diretamente do site das [Loterias da Caixa](https://loterias.caixa.gov.br/Paginas/default.aspx) através do uso de
técnicas de Web Scraping.
Caso necessário, é possível fazer download das base de dados em formado **.xlsx**
através dos links abaixo:
- *__Dia de Sorte__* [Dia_de_Sorte`.xlsx`](https://raw.githubusercontent.com/AlceuPantoni/loterrrias/main/data-raw/resultados_diadesorte.xlsx)
- *__Lotofácil__* [Lotofacil`.xlsx`](https://raw.githubusercontent.com/AlceuPantoni/loterrrias/main/data-raw/resultados_lotofacil.xlsx)
- *__Lotomania__* [Lotomania`.xlsx`](https://raw.githubusercontent.com/AlceuPantoni/loterrrias/main/data-raw/resultados_lotomania.xlsx)
- *__Mega-Sena__* [Mega_Sena`.xlsx`](https://raw.githubusercontent.com/AlceuPantoni/loterrrias/main/data-raw/resultados_megasena.xlsx)
- *__Quina__* [Quina`.xlsx`](https://raw.githubusercontent.com/AlceuPantoni/loterrrias/main/data-raw/resultados_quina.xlsx)
- *__Super Sete__* [Super_Sete`.xlsx`](https://raw.githubusercontent.com/AlceuPantoni/loterrrias/main/data-raw/resultados_supersete.xlsx)
- *__Timemania__* [Timemania`.xlsx`](https://raw.githubusercontent.com/AlceuPantoni/loterrrias/main/data-raw/resultados_timemania.xlsx)
## Instalação
O pacote loterrrias pode ser instalado através do [GitHub](https://github.com/)
utilizando o código abaixo em seu R:
``` r
# install.packages("devtools")
devtools::install_github("AlceuPantoni/loterrrias")
```
## Exemplos de uso
Abaixo, como exemplo, segue um dos conjuntos de dados disponíveis, referente ao
produto Mega-Sena.
```{r eval=TRUE, message=FALSE, warning=FALSE, include=TRUE}
loterrrias::resultado_todos(produto = 'megasena') |>
dplyr::arrange(desc(concurso)) |>
head(7) |>
knitr::kable()
```
Neste outro caso de uso, temos um resumo histórico de todos os produtos das
Loterias da Caixa disponíveis no pacote.
```{r eval=TRUE, message=FALSE, warning=FALSE, include=TRUE}
loterrrias::historico_resumido_produtos() |>
knitr::kable()
```