The Records of Parliamentary Questions 委員質詢事項資訊
Arguments
- term
numeric or NULL. The default is set to NULL. 參數必須為數值。
- session_period
integer, numeric or NULL. Available options for the session is: 1, 2, 3, 4, 5, 6, 7, and 8. The default is set to 8 參數必須為數值。
review_session_info()
generates each session period available option period in Minguo (Taiwan) calendar.- verbose
logical, indicates whether
get_parlquestions
should print out detailed output when retrieving the data. The default is TRUE.
Value
A list containing:
title
the records of parliamentary questions
query_time
the queried time
retrieved_number
the total number of observations
retrieved_term
the queried term
url
the retrieved json url
variable_names
the variables of the tibble dataframe
manual_info
the offical manual from https://data.ly.gov.tw/getds.action?id=6, or use get_variable_info("get_parlquestions")
data
a tibble dataframe, whose variables include:
term
屆別
sessionPeriod
會期
sessionTimes
會次
item
項目
selectTerm
屆別期別篩選條件
Details
get_parlquestions
produces a list, which contains title
,
query_time
, retrieved_number
, retrieved_term
, url
, variable_names
,
manual_info
, and data
.
Note
To retrieve the user manual and more information about variable of the data
frame, please use get_variable_info("get_parlquestions")
or visit the API manual at https://data.ly.gov.tw/getds.action?id=6.
質詢類: 提供議事日程本院委員之質詢事項資訊(自第8屆第1會期起)。
Examples
## Query parliamentary questions by term.
## 輸入「立委會期」下載立委質詢資料
get_parlquestions(term = 10)
#> Retrieved URL:
#> https://data.ly.gov.tw/odw/ID6Action.action?term=10&sessionPeriod=&sessionTimes=&item=&fileType=json
#> Retrieved Term: 10
#> Retrieved Num: 1584
#> $title
#> [1] "the records of parliarmentary questions"
#>
#> $query_time
#> [1] "2024-02-25 16:57:03 GMT"
#>
#> $retrieved_number
#> [1] 1584
#>
#> $retrieved_term
#> [1] "10"
#>
#> $url
#> [1] "https://data.ly.gov.tw/odw/ID6Action.action?term=10&sessionPeriod=&sessionTimes=&item=&fileType=json"
#>
#> $variable_names
#> [1] "term" "sessionPeriod" "sessionTimes" "item"
#> [5] "selectTerm"
#>
#> $manual_info
#> [1] "https://data.ly.gov.tw/getds.action?id=6"
#>
#> $data
#> # A tibble: 1,584 × 5
#> term sessionPeriod sessionTimes item selectTerm
#> <chr> <chr> <chr> <chr> <chr>
#> 1 10 01 01 乙、本院委員質詢部分 all
#> 2 10 01 01 一、本院李委員德維,針就大… all
#> 3 10 01 01 二、本院李委員德維,針就台… all
#> 4 10 01 01 三、本院許委員淑華,鑑於新… all
#> 5 10 01 01 四、本院許委員淑華,鑑於政… all
#> 6 10 01 01 五、本院許委員淑華,鑑於20… all
#> 7 10 01 01 六、本院許委員淑華,鑑於台… all
#> 8 10 01 01 七、本院許委員淑華,鑑於蔡… all
#> 9 10 01 01 八、本院許委員淑華,鑑於新… all
#> 10 10 01 01 九、本院許委員淑華,鑑於武… all
#> # ℹ 1,574 more rows
#>
## Query parliamentary questions by term and session period.
## 輸入「立委屆期」與「會期」下載立委質詢資料
get_parlquestions(term = 10, session_period = 2)
#> Retrieved URL:
#> https://data.ly.gov.tw/odw/ID6Action.action?term=10&sessionPeriod=02&sessionTimes=&item=&fileType=json
#> Retrieved Term: 10
#> Retrieved Num: 330
#> $title
#> [1] "the records of parliarmentary questions"
#>
#> $query_time
#> [1] "2024-02-25 16:57:07 GMT"
#>
#> $retrieved_number
#> [1] 330
#>
#> $retrieved_term
#> [1] "10"
#>
#> $url
#> [1] "https://data.ly.gov.tw/odw/ID6Action.action?term=10&sessionPeriod=02&sessionTimes=&item=&fileType=json"
#>
#> $variable_names
#> [1] "term" "sessionPeriod" "sessionTimes" "item"
#> [5] "selectTerm"
#>
#> $manual_info
#> [1] "https://data.ly.gov.tw/getds.action?id=6"
#>
#> $data
#> # A tibble: 330 × 5
#> term sessionPeriod sessionTimes item selectTerm
#> <chr> <chr> <chr> <chr> <chr>
#> 1 10 02 01 乙、本院委員質詢部分 all
#> 2 10 02 01 一、本院賴委員香伶,有鑑於… all
#> 3 10 02 01 二、本院賴委員香伶,鑑於我… all
#> 4 10 02 01 三、本院楊委員瓊瓔,對於行… all
#> 5 10 02 01 四、本院楊委員瓊瓔,鑑於台… all
#> 6 10 02 01 五、本院楊委員瓊瓔,鑑於雨… all
#> 7 10 02 01 六、本院楊委員瓊瓔,鑑於製… all
#> 8 10 02 01 七、本院楊委員瓊瓔,鑑於新… all
#> 9 10 02 01 八、本院何委員欣純,鑑於世… all
#> 10 10 02 01 九、本院楊委員瓊瓔,鑑於台… all
#> # ℹ 320 more rows
#>