-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
69 lines (42 loc) · 1.7 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
67
68
69
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# trf1
<!-- badges: start -->
[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/jjesusfilho/trf1?branch=master&svg=true)](https://ci.appveyor.com/project/jjesusfilho/trf1)
[![Travis build status](https://travis-ci.org/jjesusfilho/trf1.svg?branch=master)](https://travis-ci.org/jjesusfilho/trf1)
<!-- badges: end -->
O objetivo deste pacote é de prover funções para baixar e organizar decisões de primeira e de segunda instância do Tribunal Regional Federal da Primeira Região
## Instalação
Instale a versão em desenvolvimento:
``` r
devtools::install_.packages_github("jjesusfilho/trf1")
```
## Utilização
Para baixar acórdãos do TRF1 com busca livre, use a seguinte função:
```r
baixar_cjsg_trf1(livre = "agência nacional de vigilância sanitária", data_inicial = "01/07/2019", data_final = "31/07/2019")
df <- ler_cjsg_trf1()
```
Para baixar processos julgados numa data específica, utilize as funções abaixo.
```r
dir.create("trf1")
baixar_por_data_trf1(data = "15/10/2019", diretorio = "trf1")
df <- ler_por_data_trf1(diretorio = "trf1")
dir.create("trf1/detalhes")
baixar_detalhes_trf1(df, diretorio = "trf1/detalhes")
detalhes <- ler_detalhes_trf1(diretorio = "trf1/detalhes")
partes <- ler_partes_trf1(diretorio = "trf1/detalhes")
movimentacao <- ler_movimentacao_trf1(diretorio = "trf1/detalhes")
```
Please note that the 'trf1' project is released with a
[Contributor Code of Conduct](.github/CODE_OF_CONDUCT.md).
By contributing to this project, you agree to abide by its terms.