An Example of the Records of the Bills
First, we’ll import legisTaiwan, and then we’ll retrieve data from January 20th of the Republic of China year 106 to March 10th of the Republic of China year 111.
library(legisTaiwan)
#> ## legisTaiwan ##
#> ## An R package connecting to the Taiwan Legislative API. ##
billdata <- get_bills(start_date = 1060120,
end_date = 1110310, verbose = FALSE)
The get_bills function returns a list that contains query_time, retrieved_number, meeting_unit, start_date_ad (A.D) , end_date_ad (A.D), start_date, end_date, url, variable_names, manual_info, and data.
billdata$data
#> # A tibble: 8,287 × 9
#> date term sessionPeriod sessionTimes billName billProposer
#> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 1110304 10 05 02 公民投票法第三十… 曾銘宗
#> 2 1110304 10 05 02 財政收支劃分法第… 曾銘宗 ; 費…
#> 3 1110304 10 05 02 勞工保險條例第六… 曾銘宗 ; 費…
#> 4 1110304 10 05 02 中華民國憲法增修… 孔文吉
#> 5 1110304 10 05 02 公平交易法第四十… 洪孟楷
#> 6 1110304 10 05 02 國民教育法第二條… 洪孟楷
#> 7 1110304 10 05 02 職業安全衛生法第… 洪孟楷
#> 8 1110304 10 05 02 耕地三七五減租條… 張育美
#> 9 1110304 10 05 02 建築法第七十七條… 張育美
#> 10 1110304 10 05 02 道路交通管理處罰… 張育美
#> # ℹ 8,277 more rows
#> # ℹ 3 more variables: billCosignatory <chr>, billStatus <chr>,
#> # date_ad <date>