listarProposicoesVotadasEmPlenario: List Proposals Voted On

Description Usage Arguments Value Note Author(s) Examples

Description

Returns a data frame containing all the of proposals that were submitted to the floor for voting at Camara dos Deputados in a specific year (ano) and of a type (tipo). tipo is an optional parameter and if not specified the function will return all types of proposals.

Usage

1

Arguments

ano

integer, the year in which the proposals were submitted to the floor.

tipo

character, the type of the proposal(s) (check listarSiglasTipoProposicao function for help). If not specified the function will return all types of proposals.

Value

A data frame containing all the of proposals that were submitted to the floor for voting.

Note

The output of this function can be used as a parameter in functions that require proposals already voted on.

Author(s)

Leonardo Sangali Barone; Alexia Aslan

Examples

1
2
3
4
5
6
7
8
# All the propositions voted in 2015
proposicoesVotadas2015 <- listarProposicoesVotadasEmPlenario(2015)
head(proposicoesVotadas2015)

# All the propositions of type "Proposta de Emenda a Constituicao" (PEC, which
# are constitutional amendments) voted in 2015
pecsVotadas2015 <- listarProposicoesVotadasEmPlenario(2015, "PEC")
head(pecsVotadas2015)

leobarone/bRasilLegis documentation built on May 21, 2019, 4:07 a.m.