Template rostemplate by dieghernan, based on Bootstrapious.
diff --git a/dev/search.json b/dev/search.json
index 2eef24a..6c8cee5 100644
--- a/dev/search.json
+++ b/dev/search.json
@@ -1 +1 @@
-[{"path":"/dev/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"MIT License","title":"MIT License","text":"Copyright (c) 2020 senadoRES authors Permission hereby granted, free charge, person obtaining copy software associated documentation files (“Software”), deal Software without restriction, including without limitation rights use, copy, modify, merge, publish, distribute, sublicense, /sell copies Software, permit persons Software furnished , subject following conditions: copyright notice permission notice shall included copies substantial portions Software. SOFTWARE PROVIDED “”, WITHOUT WARRANTY KIND, EXPRESS IMPLIED, INCLUDING LIMITED WARRANTIES MERCHANTABILITY, FITNESS PARTICULAR PURPOSE NONINFRINGEMENT. EVENT SHALL AUTHORS COPYRIGHT HOLDERS LIABLE CLAIM, DAMAGES LIABILITY, WHETHER ACTION CONTRACT, TORT OTHERWISE, ARISING , CONNECTION SOFTWARE USE DEALINGS SOFTWARE.","code":""},{"path":"/dev/articles/senadoRES.html","id":"senadores","dir":"Articles","previous_headings":"","what":"Senadores","title":"Getting Started","text":"function return members Senate: can see increase females Senate along legislatures:","code":"ts <- senadores() head(ts) #> nombre apellidos legislatura ultCredencial procedTipo #> 1 FERNANDO ABAD BÉCQUER 5 260 D #> 2 ENRIQUE ABAD BENEDICTO 10 034 E #> 3 ELISABET ABAD GIRALT 12 051 D #> 4 JOSÉ ANTONIO ABAD LÓPEZ-BREA 3 039 E #> 5 PATRICIA ABASCAL JIMÉNEZ 14 199 E #> 6 ADOLFO ABEJÓN ORTEGA 9 081 E #> procedLiteral procedLugar grupoCod grupoSiglas #> 1 Designado Asamblea de Madrid Asamblea de Madrid 800 #> 2 Electo Sevilla Sevilla 800 #> 3 Designada Parlamento de Cataluña Parlamento de Cataluña 807 #> 4 Electo Zamora Zamora CP #> 5 Electa Eivissa-Formentera Eivissa-Formentera 800 #> 6 Electo Valladolid Valladolid 801 #> grupoNombre sex #> 1 GPS male #> 2 GPS male #> 3 GPN female #> 4 GPCP male #> 5 GPS female #> 6 GPP male ts %>% group_by(legislatura) %>% count(sex) %>% mutate(total = sum(n)) %>% filter(!is.na(sex)) %>% mutate(ratio = n/total) %>% filter(sex != \"male\") %>% ggplot() + geom_point(aes(legislatura, ratio, col = sex, shape = sex), size = 3) + geom_hline(yintercept = 0.5, linetype = 2, col = \"red\") + scale_x_continuous(breaks = seq_len(15)) + scale_y_continuous(breaks = seq(from = 0, to = 0.7, by = .1), expand = expansion(add = c(0, 0.01)), limits = c(0, NA)) + theme_minimal() + labs(title = \"Ratio of women\", x = \"Legislatura\", y = \"Ratio of women\") + guides(col = FALSE, shape = FALSE) #> Warning: The `` argument of `guides()` cannot be `FALSE`. Use \"none\" instead as #> of ggplot2 3.3.4."},{"path":"/dev/articles/senadoRES.html","id":"documents","dir":"Articles","previous_headings":"","what":"Documents","title":"Getting Started","text":"Senate publication different types documents. three main documents document, boletin sumario. recognized documents code named CSV. can create CSV : found CSV aren’t sure code valid check_code(). valid CSV can retrieve information document: omitted column functions also return text explaining document bit verbose show. refer session, provide information. make easier retrieve information possible session can : interested single document can use:","code":"document_csv(legislatura = 14, sesion = 1, number = 1) #> [1] \"BOCG_D_14_1_1\" boletin_csv(legislatura = 14, sesion = 1) #> [1] \"BOCG_T_14_1\" sumario_csv(legislatura = 14, sesion = 1) #> [1] \"BOCG_S_14_1\" boletin_csv <- boletin_csv(14, 3) b <- boletin(boletin_csv) head(b[, c(1:14, 16)]) #> SECC NBOL ANNO FECHA CVE PAGI #> 1 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> 2 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> 3 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> 4 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> 5 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> 6 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> apartado #> 1 IV. Otras actividades parlamentarias #> 2 VI. Administración del Senado #> 3 VI. Administración del Senado #> 4 VI. Administración del Senado #> 5 VI. Administración del Senado #> 6 VI. Administración del Senado #> subapartado numpag numpagfin DISP #> 1 Acuerdos e Informes de la Diputación Permanente 2 2 10 #> 2 Personal eventual 3 3 11 #> 3 Personal eventual 4 4 12 #> 4 Personal eventual 5 5 13 #> 5 Personal eventual 6 6 14 #> 6 Personal eventual 7 7 15 #> TITULO #> 1 Informe por el que se da cuenta a la nueva Cámara de los asuntos tramitados por la Diputación Permanente y de sus decisiones, en cumplimiento de lo dispuesto en el artículo 78.4 de la Constitución (se corresponde con el número de expediente 561/000020 de la XIII Legislatura). #> 2 Personal eventual al servicio del ex-Presidente del Senado. #> 3 Personal eventual adscrito a la Presidencia del Senado. #> 4 Personal eventual adscrito a la Vicepresidencia Primera del Senado. #> 5 Personal eventual adscrito a la Vicepresidencia Segunda del Senado. #> 6 Personal eventual adscrito a la Secretaría Primera del Senado. #> FASE NUMEXP document #> 1 Conocimiento por el Pleno 561/000002 BOCG_D_14_3_10 #> 2 Nombramientos 523/000002 BOCG_D_14_3_11 #> 3 Nombramientos 523/000003 BOCG_D_14_3_12 #> 4 Nombramientos 523/000004 BOCG_D_14_3_13 #> 5 Nombramientos 523/000005 BOCG_D_14_3_14 #> 6 Nombramientos 523/000006 BOCG_D_14_3_15 sumario_csv <- sumario_csv(legislatura = 14, sesion = 1) s <- sumario(sumario_csv) head(s) #> idlegislatura idnumero fechaBol nomSumBol nomSumTBol #> 1 14 1 2019-12-05 BOCG_S_14_1 BOCG_T_14_1 #> 2 14 1 2019-12-05 BOCG_S_14_1 BOCG_T_14_1 #> 3 14 1 2019-12-05 BOCG_S_14_1 BOCG_T_14_1 #> directorioBol apNumRomano apDescripcion #> 1 legis14/publicaciones/pdf/senado/bocg VI ADMINISTRACIÓN DEL SENADO #> 2 legis14/publicaciones/pdf/senado/bocg VI ADMINISTRACIÓN DEL SENADO #> 3 legis14/publicaciones/pdf/senado/bocg VI ADMINISTRACIÓN DEL SENADO #> subDescripcion #> 1 PERSONAL EVENTUAL #> 2 PERSONAL EVENTUAL #> 3 PERSONAL EVENTUAL #> objeto #> 1 Personal eventual del Senado como Asistentes de los señores Senadores de los Grupos Parlamentarios de la XIII Legislatura. #> 2 Personal eventual adscrito a la Presidencia, Vicepresidencias Primera y Segunda y Secretarías Primera y Cuarta del Senado de la XIII Legislatura. #> 3 Personal eventual al servicio del ex-Presidente del Senado. #> tipoExpediente disp cve fase #> 1 511 9309 BOCG_D_14_1_1 Ceses #> 2 523 9310 BOCG_D_14_1_2 Ceses #> 3 523 9311 BOCG_D_14_1_3 Ceses bs <- boletin_sumario(legislatura = 14, sesion = 3) head(bs) #> cve idnumero idlegislatura fechaBol nomSumBol nomSumTBol #> 1 BOCG_D_14_3_10 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> 2 BOCG_D_14_3_11 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> 3 BOCG_D_14_3_12 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> 4 BOCG_D_14_3_13 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> 5 BOCG_D_14_3_14 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> 6 BOCG_D_14_3_15 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> directorioBol directorioXmlBol #> 1 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> 2 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> 3 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> 4 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> 5 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> 6 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> directorioEpubBol apNumRomano #> 1 legis14/publicaciones/epub/senado/bocg IV #> 2 legis14/publicaciones/epub/senado/bocg VI #> 3 legis14/publicaciones/epub/senado/bocg VI #> 4 legis14/publicaciones/epub/senado/bocg VI #> 5 legis14/publicaciones/epub/senado/bocg VI #> 6 legis14/publicaciones/epub/senado/bocg VI #> apDescripcion #> 1 OTRAS ACTIVIDADES PARLAMENTARIAS #> 2 ADMINISTRACIÓN DEL SENADO #> 3 ADMINISTRACIÓN DEL SENADO #> 4 ADMINISTRACIÓN DEL SENADO #> 5 ADMINISTRACIÓN DEL SENADO #> 6 ADMINISTRACIÓN DEL SENADO #> subDescripcion #> 1 ACUERDOS E INFORMES DE LA DIPUTACIÓN PERMANENTE #> 2 PERSONAL EVENTUAL #> 3 PERSONAL EVENTUAL #> 4 PERSONAL EVENTUAL #> 5 PERSONAL EVENTUAL #> 6 PERSONAL EVENTUAL #> objeto #> 1 Informe por el que se da cuenta a la nueva Cámara de los asuntos tramitados por la Diputación Permanente y de sus decisiones, en cumplimiento de lo dispuesto en el artículo 78.4 de la Constitución (se corresponde con el número de expediente 561/000020 de la XIII Legislatura). #> 2 Personal eventual al servicio del ex-Presidente del Senado. #> 3 Personal eventual adscrito a la Presidencia del Senado. #> 4 Personal eventual adscrito a la Vicepresidencia Primera del Senado. #> 5 Personal eventual adscrito a la Vicepresidencia Segunda del Senado. #> 6 Personal eventual adscrito a la Secretaría Primera del Senado. #> tipoExpediente disp fase SECC ANNO FECHA #> 1 561 9318 Conocimiento por el Pleno S 2019 2019-12-11 #> 2 523 9319 Nombramientos S 2019 2019-12-11 #> 3 523 9320 Nombramientos S 2019 2019-12-11 #> 4 523 9321 Nombramientos S 2019 2019-12-11 #> 5 523 9322 Nombramientos S 2019 2019-12-11 #> 6 523 9323 Nombramientos S 2019 2019-12-11 #> CVE PAGI apartado #> 1 BOCG_T_14_3 1 IV. Otras actividades parlamentarias #> 2 BOCG_T_14_3 1 VI. Administración del Senado #> 3 BOCG_T_14_3 1 VI. Administración del Senado #> 4 BOCG_T_14_3 1 VI. Administración del Senado #> 5 BOCG_T_14_3 1 VI. Administración del Senado #> 6 BOCG_T_14_3 1 VI. Administración del Senado #> subapartado numpag numpagfin DISP #> 1 Acuerdos e Informes de la Diputación Permanente 2 2 10 #> 2 Personal eventual 3 3 11 #> 3 Personal eventual 4 4 12 #> 4 Personal eventual 5 5 13 #> 5 Personal eventual 6 6 14 #> 6 Personal eventual 7 7 15 #> TITULO #> 1 Informe por el que se da cuenta a la nueva Cámara de los asuntos tramitados por la Diputación Permanente y de sus decisiones, en cumplimiento de lo dispuesto en el artículo 78.4 de la Constitución (se corresponde con el número de expediente 561/000020 de la XIII Legislatura). #> 2 Personal eventual al servicio del ex-Presidente del Senado. #> 3 Personal eventual adscrito a la Presidencia del Senado. #> 4 Personal eventual adscrito a la Vicepresidencia Primera del Senado. #> 5 Personal eventual adscrito a la Vicepresidencia Segunda del Senado. #> 6 Personal eventual adscrito a la Secretaría Primera del Senado. #> FASE NUMEXP #> 1 Conocimiento por el Pleno 561/000002 #> 2 Nombramientos 523/000002 #> 3 Nombramientos 523/000003 #> 4 Nombramientos 523/000004 #> 5 Nombramientos 523/000005 #> 6 Nombramientos 523/000006 #> text #> 1 El Pleno del Senado, en la sesión constitutiva celebrada el día 3 de diciembre de 2019, ha tomado conocimiento del Informe de la Diputación Permanente de la XIII Legislatura por el que se da cuenta a la nueva Cámara de los asuntos tramitados por la Diputación Permanente y de sus decisiones, en cumplimiento de lo dispuesto en el artículo 78.4 de la Constitución, que aparece publicado en el BOCG, Senado, número 2, de fecha 10 de diciembre de 2019.Lo que se publica para general conocimiento.Palacio del Senado, 3 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. #> 2 En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales y de conformidad con lo establecido en el acuerdo relativo al estatuto del ex-Presidente, aprobado por la Mesa del Senado con fecha 21 de mayo de 2019, y a propuesta del Excmo. Sr. D. Pío García-Escudero Márquez, la Excma. Sra. Presidenta del Senado ha resuelto nombrar a las personas que abajo se relacionan como personal eventual del Senado, en el cargo que para cada uno de ellos se señala, con efectos del día 3 de diciembre de 2019:— D.ª María Angélica Aguirre Álvarez (Asistente del ex-Presidente)— D. José Manuel Bustos Bao (conductor del ex-Presidente)Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. #> 3 En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales la Excma. Sra. Presidenta del Senado ha resuelto nombrar a las personas que abajo se relacionan como personal eventual del Senado adscritos a la Presidencia, en el cargo que para cada uno de ellos se señala, con efectos del día 3 de diciembre de 2019:— D. David Giménez Glück (Director de Gabinete de la Presidencia)— D.ª Victoria Luna Castaños (Directora de Comunicación de Presidencia)— D.ª Eva María Cuesta Cano (Adjunta de Comunicación)— D. Antonio García Maldonado (Asesor de la Presidenta)— D. Carles Martí Jufresa (Asesor de la Presidenta)— D.ª Elena Pardo de Santayana Villafranca (Jefa de la Secretaría de la Presidenta)— D.ª Beatriz Moreno Mínguez (Secretaria del Gabinete de la Presidencia)— D.ª María Teresa Giménez Fernández (Secretaria de la Presidenta)Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. #> 4 En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales, y a propuesta de la Excma. Sra. D.ª María Cristina Narbona Ruiz, la Excma. Sra. Presidenta del Senado ha resuelto nombrar a las personas que abajo se relacionan como personal eventual del Senado adscritas a la Vicepresidencia Primera, en el cargo que para cada uno de ellos se señala, con efectos del día 3 de diciembre de 2019:— D.ª Milagros Carreto Vega (Secretaria «A»)— D.ª María Isabel Vicente Elvira (Secretaria «B»)Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. #> 5 En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales, y a propuesta del Excmo. Sr. D. Pío García-Escudero Márquez, la Excma. Sra. Presidenta del Senado ha resuelto nombrar a las personas que abajo se relacionan como personal eventual del Senado adscritos a la Vicepresidencia Segunda, en el cargo que para cada uno de ellos se señala, con efectos del día 3 de diciembre de 2019:— D. Luis Hernández Martín (Secretario «A»)— D.ª María Isabel Hernanz Jaime (Secretaria «B»)Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. #> 6 En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales, y a propuesta del Excmo. Sr. D. Francisco Manuel Fajardo Palarea, la Excma. Sra. Presidenta del Senado ha resuelto nombrar D.ª María Sánchez Manzanares como personal eventual del Senado adscrita a la Secretaría Primera, en el cargo de Secretaria «A», con efectos del día 3 de diciembre de 2019.Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado.En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales, y a propuesta del Excmo. Sr. D. Francisco Manuel Fajardo Palarea, la Excma. Sra. Presidenta del Senado ha resuelto nombrar D. Carlos Alberto Magdaleno Galdona como personal eventual del Senado adscrito a la Secretaría Primera, en el cargo de Secretario «B», con efectos del día 3 de diciembre de 2019.Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. document_csv <- \"BOCG_D_14_3_15\" d <- documento(document_csv) d[, 1:15] #> SECC NBOL ANNO DISP INIC #> 1 S 3 2019 15 523/000006 #> TITULO FASE #> 1 Personal eventual adscrito a la Secretaría Primera del Senado. Nombramientos #> FECHA CVE apartado subapartado #> 1 2019-12-11 BOCG_D_14_3_15 VI. Administración del Senado Personal eventual #> numpag numpagfin DISP.1 NUMEXP #> 1 7 7 15 523/000006"},{"path":"/dev/articles/senadoRES.html","id":"plenarias","dir":"Articles","previous_headings":"","what":"Plenarias","title":"Getting Started","text":"need know many plenary sessions done can check : Note information available X legislature onward times meet afternoon. want detailed information session can use fichUrlDetalleSesion details: help know talked, long topics documents got referenced.","code":"head(plenarias(10)) #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored #> sesionLegislatura sesionNumero sesionFechaInicio sesionHoraInicio #> 1 10 81 13 de octubre de 2015 16 hours #> 2 10 80 29 de septiembre de 2015 16 hours #> 3 10 79 8 de septiembre de 2015 16 hours #> 4 10 78 1 de septiembre de 2015 13 hours #> 5 10 77 16 de julio de 2015 12 hours #> 6 10 76 7 de julio de 2015 16 hours #> sesionTitulo #> 1 Sesión plenaria número 81 #> 2 Sesión plenaria número 80 #> 3 Sesión plenaria número 79 #> 4 Sesión plenaria número 78 #> 5 Sesión plenaria número 77 #> 6 Sesión plenaria número 76 #> urlPagina #> 1 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=85&legis=10&ns=81 #> 2 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=84&legis=10&ns=80 #> 3 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=82&legis=10&ns=79 #> 4 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=81&legis=10&ns=78 #> 5 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=80&legis=10&ns=77 #> 6 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=79&legis=10&ns=76 #> urlPaginaVotaciones #> 1 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=85&legis=10&ns=81&vot=vot #> 2 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=84&legis=10&ns=80&vot=vot #> 3 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=82&legis=10&ns=79&vot=vot #> 4 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=81&legis=10&ns=78&vot=vot #> 5 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=80&legis=10&ns=77&vot=vot #> 6 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=79&legis=10&ns=76&vot=vot #> fichUrlVotaciones #> 1 /legis10/votaciones/ses_81.xml #> 2 /legis10/votaciones/ses_80.xml #> 3 /legis10/votaciones/ses_79.xml #> 4 /legis10/votaciones/ses_78.xml #> 5 /legis10/votaciones/ses_77.xml #> 6 /legis10/votaciones/ses_76.xml #> fichUrlDetalleSesion #> 1 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=081&numConv=01&fecha=13102015 #> 2 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=080&numConv=01&fecha=29092015 #> 3 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=079&numConv=01&fecha=08092015 #> 4 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=078&numConv=01&fecha=01092015 #> 5 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=077&numConv=01&fecha=16072015 #> 6 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=076&numConv=01&fecha=07072015 s <- lapply(10:14, plenarias) #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored sessions <- do.call(rbind, s) ggplot(sessions) + stat_sum(aes(sesionLegislatura, sesionHoraInicio, fill = after_stat(n), size = 1), geom = \"tile\") + guides(size = FALSE) + theme_minimal() + labs(title = \"Hour of sessions\", x = \"Legislature\", y = \"Starting hour\", fill = \"Sessions\") + scale_y_continuous(breaks = 1:19) details <- detalles(paste0(\"https://www.senado.es\", sessions$fichUrlDetalleSesion[1])) details[1:5, c(\"asunto_id\", \"asunto_hora_inicio\", \"asunto_hora_fin\", \"punto_literal\", \"intervencion_orador_desc\", \"intervencion_orador_idWeb\")] #> asunto_id asunto_hora_inicio asunto_hora_fin punto_literal #> 1 147602 16:01 16:01 Actas #> 2 147603 16:01 19:49 Proyectos y Proposiciones de Ley #> 3 147603 16:01 19:49 Proyectos y Proposiciones de Ley #> 4 147603 16:01 19:49 Proyectos y Proposiciones de Ley #> 5 147603 16:01 19:49 Proyectos y Proposiciones de Ley #> intervencion_orador_desc intervencion_orador_idWeb #> 1 #> 2 GUERRERO ROSADO, PETRONILA 15301 #> 3 JULIOS REYES, MARÍA DEL MAR DEL PINO 16165 #> 4 SANTOS FERNÁNDEZ, ROSARIO ISABEL 15235 #> 5 YANGUAS FERNÁNDEZ, FRANCISCO JAVIER 15406"},{"path":"/dev/articles/senadoRES.html","id":"grupos","dir":"Articles","previous_headings":"","what":"Grupos","title":"Getting Started","text":"interested political groups composition certain legislature: Note record case starts XII legislature.","code":"g <- grupos(12) head(g) #> codigo nombre siglas notasWeb #> 1 801 GRUPO PARLAMENTARIO POPULAR EN EL SENADO GPP #> 2 801 GRUPO PARLAMENTARIO POPULAR EN EL SENADO GPP #> 3 800 GRUPO PARLAMENTARIO SOCIALISTA GPS #> 4 800 GRUPO PARLAMENTARIO SOCIALISTA GPS #> 5 800 GRUPO PARLAMENTARIO SOCIALISTA GPS #> 6 800 GRUPO PARLAMENTARIO SOCIALISTA GPS #> fechaConstitucion fechaBaja total totalElectos totalDesignados partidoCod #> 1 19/07/2016 41 32 9 PP #> 2 19/07/2016 41 32 9 PAR #> 3 19/07/2016 15 9 6 PSOE #> 4 19/07/2016 15 9 6 PSE-EE-PSOE- #> 5 19/07/2016 15 9 6 PSC-PSOE #> 6 19/07/2016 15 9 6 PSdeG-PSOE #> partidoSiglas partidoNombre #> 1 PP PARTIDO POPULAR #> 2 PAR PARTIDO ARAGONÉS #> 3 PSOE PARTIDO SOCIALISTA OBRERO ESPAÑOL #> 4 PSE-EE(PSOE) PARTIDO SOCIALISTA DE EUSKADI-EUSKADIKO EZKERRA (PSOE) #> 5 PSC-PSOE PARTIT DELS SOCIALISTES DE CATALUNYA #> 6 PSdeG-PSOE PARTIDO DOS SOCIALISTAS DE GALICIA-PSOE #> partidoUrl partidoTotal partidoTotalElectos #> 1 www.pp.es 40 31 #> 2 www.partidoaragones.es 1 1 #> 3 www.psoe.es 12 8 #> 4 www.socialistasvascos.com 1 0 #> 5 www.socialistes.cat 1 0 #> 6 www.psdeg-psoe.org 1 1 #> partidoTotalDesignados #> 1 9 #> 2 0 #> 3 4 #> 4 1 #> 5 1 #> 6 0"},{"path":"/dev/articles/senadoRES.html","id":"laws","dir":"Articles","previous_headings":"","what":"Laws","title":"Getting Started","text":"legislative chamber one important duties approve change laws- can see many got approved (note closer time still process approved):","code":"lex14 <- leyes(14) head(lex14) #> titulo #> 1 Proyecto de Ley de Cooperación para el Desarrollo Sostenible y la Solidaridad Global. (621/000068) #> 2 Ley 39/2022, de 30 de diciembre, del Deporte (621/000065) #> 3 Ley 37/2022, de 27 de diciembre, por la que se modifica la Ley 28/2010, de 16 de julio, del régimen de cesión de tributos del Estado a la Comunidad Autónoma de las Illes Balears y de fijación del alcance y condiciones de dicha cesión (621/000074) #> 4 Ley 38/2022, de 27 de diciembre, para el establecimiento de gravámenes temporales energético y de entidades de crédito y establecimientos financieros de crédito y por la que se crea el impuesto temporal de solidaridad de las grandes fortunas, y se modifican determinadas normas tributarias (624/000018) #> 5 Ley 36/2022, de 27 de diciembre, por la que se modifica la Ley 17/2010, de 16 de julio, del régimen de cesión de tributos del Estado a la Comunidad Autónoma de Galicia y de fijación del alcance y condiciones de dicha cesión (621/000073) #> 6 Ley 35/2022, de 27 de diciembre, por la que se modifica la Ley 23/2010, de 16 de julio, del régimen de cesión de tributos del Estado a la Comunitat Valenciana y de fijación del alcance y condiciones de dicha cesión (621/000072) #> urlFichaLey #> 1 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000068 #> 2 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000065 #> 3 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000074 #> 4 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=624&id2=000018 #> 5 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000073 #> 6 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000072 #> anio boe #> 1 9999 Pendiente de publicación en el BOE #> 2 2022 B.O.E. nº 314, de 31 de Diciembre de 2022 #> 3 2022 B.O.E. nº 311, de 28 de Diciembre de 2022 #> 4 2022 B.O.E. nº 311, de 28 de Diciembre de 2022 #> 5 2022 B.O.E. nº 311, de 28 de Diciembre de 2022 #> 6 2022 B.O.E. nº 311, de 28 de Diciembre de 2022 #> urlBoe #> 1 #> 2 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2022-24430 #> 3 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2022-22683 #> 4 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2022-22684 #> 5 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2022-22682 #> 6 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2022-22681 #> bloquesTematicos #> 1 TRABAJO. POLÍTICA SOCIAL, POLÍTICA INTERNACIONAL, MEDIO AMBIENTE, SOCIEDAD #> 2 ADMINISTRACIONES PÚBLICAS, SOCIEDAD, EDUCACIÓN, INDUSTRIA. COMERCIO. SERVICIOS, TRABAJO. POLÍTICA SOCIAL, ORGANIZACIÓN TERRITORIAL DEL ESTADO #> 3 ORGANIZACIÓN TERRITORIAL DEL ESTADO, ECONOMÍA. HACIENDA #> 4 ECONOMÍA. HACIENDA, MEDIO AMBIENTE, INDUSTRIA. COMERCIO. SERVICIOS #> 5 ECONOMÍA. HACIENDA, ORGANIZACIÓN TERRITORIAL DEL ESTADO #> 6 ECONOMÍA. HACIENDA, ORGANIZACIÓN TERRITORIAL DEL ESTADO #> numLey tipo #> 1 Ley #> 2 39 Ley #> 3 37 Ley #> 4 38 Ley #> 5 36 Ley #> 6 35 Ley"},{"path":"/dev/articles/senadoRES.html","id":"organization-chart","dir":"Articles","previous_headings":"Laws","what":"Organization chart","title":"Getting Started","text":"want know works position can check : Unfortunately doesn’t go back time, think shows current","code":"head(organigrama(13)) #> nivel #> 1 1 #> 2 2 #> 3 3 #> 4 3 #> 5 2 #> 6 3 #> nombreOficial #> 1 Secretaría General #> 2 Gabinete del Secretario General #> 3 Gabinete dependiente de la Secretaría General de Unidad de asesoramiento #> 4 Unidad de Coordinación, control y evaluación de proyectos #> 5 Servicio de Dotación de Seguridad #> 6 Unidad de Gestión Administrativa #> nombre codigo codigoPadre #> 1 Secretaría General 8 #> 2 Gabinete del Secretario General 223 8 #> 3 Unidad de asesoramiento 218 223 #> 4 Unidad de Coordinación, control y evaluación de proyectos 207 223 #> 5 Dotación de Seguridad 208 8 #> 6 Gestión Administrativa 235 208 #> tipoDependencia jefe dirCorreo #> 1 AD MANUEL CAVERO GÓMEZ secretarialetradomayor@senado.es #> 2 GAB #> 3 GAB #> 4 GAB #> 5 SER #> 6 UNI #> numTelefono #> 1 91 538 14 00 #> 2 #> 3 #> 4 #> 5 #> 6"},{"path":"/dev/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Lluís Revilla Sancho. Author, maintainer.","code":""},{"path":"/dev/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Revilla Sancho L (2023). senadoRES: Information Senate Spain. https://llrs.github.io/senadoRES, https://github.com/llrs/senadoRES.","code":"@Manual{, title = {senadoRES: Information About the Senate of Spain}, author = {Lluís {Revilla Sancho}}, year = {2023}, note = {https://llrs.github.io/senadoRES, https://github.com/llrs/senadoRES}, }"},{"path":"/dev/index.html","id":"senadores","dir":"","previous_headings":"","what":"Information About the Senate of Spain","title":"Information About the Senate of Spain","text":"goal senadoRES provide information Senate Spain. uses Open Data available XML files found exploring website.","code":""},{"path":"/dev/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Information About the Senate of Spain","text":"can install released version senadoRES :","code":"remotes::install_github(\"llrs/senadoRES\")"},{"path":"/dev/index.html","id":"example","dir":"","previous_headings":"","what":"Example","title":"Information About the Senate of Spain","text":"make easier work show data ’ll use packages:","code":"library(\"senadoRES\") library(\"dplyr\") #> #> Attaching package: 'dplyr' #> The following objects are masked from 'package:stats': #> #> filter, lag #> The following objects are masked from 'package:base': #> #> intersect, setdiff, setequal, union library(\"ggplot2\")"},{"path":"/dev/index.html","id":"senadores-1","dir":"","previous_headings":"Example","what":"Senadores","title":"Information About the Senate of Spain","text":"function return members Senate: can see increase females Senate along legislatures: see done: , first session 14th legislature dealt human resources. can check one documents, retrieve text documento.","code":"ts <- senadores() head(ts) #> nombre apellidos legislatura ultCredencial procedTipo #> 1 FERNANDO ABAD BÉCQUER 5 260 D #> 2 ENRIQUE ABAD BENEDICTO 10 034 E #> 3 ELISABET ABAD GIRALT 12 051 D #> 4 JOSÉ ANTONIO ABAD LÓPEZ-BREA 3 039 E #> 5 PATRICIA ABASCAL JIMÉNEZ 14 199 E #> 6 ADOLFO ABEJÓN ORTEGA 9 081 E #> procedLiteral procedLugar grupoCod grupoSiglas #> 1 Designado Asamblea de Madrid Asamblea de Madrid 800 #> 2 Electo Sevilla Sevilla 800 #> 3 Designada Parlamento de Cataluña Parlamento de Cataluña 807 #> 4 Electo Zamora Zamora CP #> 5 Electa Eivissa-Formentera Eivissa-Formentera 800 #> 6 Electo Valladolid Valladolid 801 #> grupoNombre sex #> 1 GPS male #> 2 GPS male #> 3 GPN female #> 4 GPCP male #> 5 GPS female #> 6 GPP male ts %>% group_by(legislatura) %>% count(sex) %>% mutate(total = sum(n)) %>% filter(!is.na(sex)) %>% mutate(ratio = n/total) %>% filter(sex != \"male\") %>% ggplot() + geom_point(aes(legislatura, ratio), size = 5) + geom_hline(yintercept = 0.5, linetype = 2, col = \"red\") + scale_x_continuous(breaks = seq_len(15)) + scale_y_continuous(labels = scales::percent_format(accuracy = 1), breaks = seq(from = 0, to = 1, by = .1), expand = expansion(add = c(0.01, 0.01)), limits = c(0, NA)) + theme_minimal() + labs(title = \"Ratio of women\", x = \"Legislatura\", y = \"% of women\") + guides(col = \"none\", shape = \"none\") + theme(panel.grid.minor.x = element_blank()) b <- boletin(boletin_csv(14, 1)) b[, c(\"FECHA\", \"DISP\", \"apartado\", \"subapartado\", \"TITULO\", \"document\")] #> FECHA DISP apartado subapartado #> 1 2019-12-05 1 VI. Administración del Senado Personal eventual #> 2 2019-12-05 2 VI. Administración del Senado Personal eventual #> 3 2019-12-05 3 VI. Administración del Senado Personal eventual #> TITULO #> 1 Personal eventual del Senado como Asistentes de los señores Senadores de los Grupos Parlamentarios de la XIII Legislatura. #> 2 Personal eventual adscrito a la Presidencia, Vicepresidencias Primera y Segunda y Secretarías Primera y Cuarta del Senado de la XIII Legislatura. #> 3 Personal eventual al servicio del ex-Presidente del Senado. #> document #> 1 BOCG_D_14_1_1 #> 2 BOCG_D_14_1_2 #> 3 BOCG_D_14_1_3"},{"path":"/dev/reference/boletin.html","id":null,"dir":"Reference","previous_headings":"","what":"Boletin — boletin","title":"Boletin — boletin","text":"Boletin","code":""},{"path":"/dev/reference/boletin.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Boletin — boletin","text":"","code":"boletin(cve)"},{"path":"/dev/reference/boletin.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Boletin — boletin","text":"cve character boletin CVE.","code":""},{"path":"/dev/reference/boletin.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Boletin — boletin","text":"data.frame","code":""},{"path":[]},{"path":"/dev/reference/boletin.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Boletin — boletin","text":"","code":"boletin_csv <- boletin_csv(14, 3) b <- boletin(boletin_csv)"},{"path":"/dev/reference/boletin_csv.html","id":null,"dir":"Reference","previous_headings":"","what":"Boletin's code — boletin_csv","title":"Boletin's code — boletin_csv","text":"Creates code summary session senate documents got talk.","code":""},{"path":"/dev/reference/boletin_csv.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Boletin's code — boletin_csv","text":"","code":"boletin_csv(legislatura, sesion)"},{"path":"/dev/reference/boletin_csv.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Boletin's code — boletin_csv","text":"legislatura numeric value. Constituent 0. sesion numeric value 0.","code":""},{"path":"/dev/reference/boletin_csv.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Boletin's code — boletin_csv","text":"Summary session plus information documents discussed.","code":""},{"path":[]},{"path":"/dev/reference/boletin_csv.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Boletin's code — boletin_csv","text":"","code":"boletin_csv(14, 1) #> [1] \"BOCG_T_14_1\""},{"path":"/dev/reference/boletin_sumario.html","id":null,"dir":"Reference","previous_headings":"","what":"Info of a session — boletin_sumario","title":"Info of a session — boletin_sumario","text":"Merges information boletin() sumario()","code":""},{"path":"/dev/reference/boletin_sumario.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Info of a session — boletin_sumario","text":"","code":"boletin_sumario(legislatura, sesion)"},{"path":"/dev/reference/boletin_sumario.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Info of a session — boletin_sumario","text":"legislatura numeric value. Constituent 0. sesion numeric value 0.","code":""},{"path":"/dev/reference/boletin_sumario.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Info of a session — boletin_sumario","text":"data.frame","code":""},{"path":[]},{"path":"/dev/reference/boletin_sumario.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Info of a session — boletin_sumario","text":"","code":"bs <- boletin_sumario(14, 3)"},{"path":"/dev/reference/check_code.html","id":null,"dir":"Reference","previous_headings":"","what":"Check code — check_code","title":"Check code — check_code","text":"Check code","code":""},{"path":"/dev/reference/check_code.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Check code — check_code","text":"","code":"check_code(id)"},{"path":"/dev/reference/check_code.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Check code — check_code","text":"id Code official publication Senate","code":""},{"path":"/dev/reference/check_code.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Check code — check_code","text":"TRUE passes checks","code":""},{"path":"/dev/reference/check_code.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Check code — check_code","text":"","code":"check_code(\"BOCG_S_1_1\") #> [1] TRUE check_code(\"BOCG_B_1_1\") #> [1] TRUE check_code(\"BOCG_D_1_1_1\") #> [1] TRUE"},{"path":"/dev/reference/comisiones.html","id":null,"dir":"Reference","previous_headings":"","what":"Comisiones — comisiones","title":"Comisiones — comisiones","text":"Look comisiones ponencias legislature. Rellevant know code work groups.","code":""},{"path":"/dev/reference/comisiones.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Comisiones — comisiones","text":"","code":"comisiones(legislatura)"},{"path":"/dev/reference/comisiones.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Comisiones — comisiones","text":"legislatura numeric value 12 (information prior ).","code":""},{"path":"/dev/reference/comisiones.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Comisiones — comisiones","text":"data.frame comisiones ponencias legislature.","code":""},{"path":"/dev/reference/comisiones.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Comisiones — comisiones","text":"","code":"if (interactive()) { comisiones(13) }"},{"path":"/dev/reference/detalles.html","id":null,"dir":"Reference","previous_headings":"","what":"Check individual session — detalles","title":"Check individual session — detalles","text":"Check individual session","code":""},{"path":"/dev/reference/detalles.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Check individual session — detalles","text":"","code":"detalles(url)"},{"path":"/dev/reference/detalles.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Check individual session — detalles","text":"url url path session.","code":""},{"path":"/dev/reference/detalles.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Check individual session — detalles","text":"data.frame information session.","code":""},{"path":[]},{"path":"/dev/reference/detalles.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Check individual session — detalles","text":"","code":"if (interactive()) { pl <- plenarias(10) detalles(pl$fichUrlDetalleSesion[1]) }"},{"path":"/dev/reference/document_csv.html","id":null,"dir":"Reference","previous_headings":"","what":"Document CVE — document_csv","title":"Document CVE — document_csv","text":"Code needd retrieve data document.","code":""},{"path":"/dev/reference/document_csv.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Document CVE — document_csv","text":"","code":"document_csv(legislatura, sesion, number)"},{"path":"/dev/reference/document_csv.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Document CVE — document_csv","text":"legislatura numeric value. Constituent 0. sesion numeric value 0. number numeric value ","code":""},{"path":"/dev/reference/document_csv.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Document CVE — document_csv","text":"character vector valid CVE.","code":""},{"path":[]},{"path":"/dev/reference/document_csv.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Document CVE — document_csv","text":"","code":"document_csv(14, 1, 1) #> [1] \"BOCG_D_14_1_1\""},{"path":"/dev/reference/documento.html","id":null,"dir":"Reference","previous_headings":"","what":"A document — documento","title":"A document — documento","text":"document","code":""},{"path":"/dev/reference/documento.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"A document — documento","text":"","code":"documento(cve)"},{"path":"/dev/reference/documento.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"A document — documento","text":"cve character document CVE.","code":""},{"path":[]},{"path":"/dev/reference/documento.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"A document — documento","text":"","code":"document_csv <- \"BOCG_D_14_110_901\" if (interactive()) { documento(document_csv) }"},{"path":"/dev/reference/get_xml.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve the XML content — get_xml","title":"Retrieve the XML content — get_xml","text":"Look internet get content","code":""},{"path":"/dev/reference/get_xml.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve the XML content — get_xml","text":"","code":"get_xml(query, encoding)"},{"path":"/dev/reference/get_xml.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve the XML content — get_xml","text":"query character url query website. encoding character encoding, usually either \"windows-1252\", \"ISO-8859-15\" \"UTF-8\".","code":""},{"path":"/dev/reference/grupos.html","id":null,"dir":"Reference","previous_headings":"","what":"Political groups and parties — grupos","title":"Political groups and parties — grupos","text":"Retrieves data term groups political parties present","code":""},{"path":"/dev/reference/grupos.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Political groups and parties — grupos","text":"","code":"grupos(legislatura)"},{"path":"/dev/reference/grupos.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Political groups and parties — grupos","text":"legislatura numeric value 12 (information prior ).","code":""},{"path":"/dev/reference/grupos.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Political groups and parties — grupos","text":"matrix information available.","code":""},{"path":"/dev/reference/grupos.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Political groups and parties — grupos","text":"","code":"if (interactive()){ grupos(13) }"},{"path":"/dev/reference/iniciativa_parlamentaria.html","id":null,"dir":"Reference","previous_headings":"","what":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","title":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","text":"Retrieve information individual iniciativa parlamentaria.","code":""},{"path":"/dev/reference/iniciativa_parlamentaria.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","text":"","code":"iniciativa_parlamentaria(legislatura, numex)"},{"path":"/dev/reference/iniciativa_parlamentaria.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","text":"legislatura numeric value. Constituent 0. numex String code document form XXX/YYYYYY.","code":""},{"path":"/dev/reference/iniciativa_parlamentaria.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","text":"data.frame situation, title type document, dates many .","code":""},{"path":"/dev/reference/iniciativa_parlamentaria.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","text":"","code":"document_csv <- \"BOCG_D_14_110_901\" if (interactive()){ d <- documento(document_csv) hd <- iniciativa_parlamentaria(14, d$NUMEXP) }"},{"path":"/dev/reference/iniciativas.html","id":null,"dir":"Reference","previous_headings":"","what":"Look up the legislative iniciatives — iniciativas","title":"Look up the legislative iniciatives — iniciativas","text":"Look legislative iniciatives","code":""},{"path":"/dev/reference/iniciativas.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Look up the legislative iniciatives — iniciativas","text":"","code":"iniciativas(legislatura)"},{"path":"/dev/reference/iniciativas.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Look up the legislative iniciatives — iniciativas","text":"legislatura numeric value. Constituent 0.","code":""},{"path":"/dev/reference/iniciativas.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Look up the legislative iniciatives — iniciativas","text":"data.frame initiatives legislature.","code":""},{"path":[]},{"path":"/dev/reference/iniciativas.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Look up the legislative iniciatives — iniciativas","text":"","code":"if (interactive()) { iniciativas(14) }"},{"path":"/dev/reference/leyes.html","id":null,"dir":"Reference","previous_headings":"","what":"Approved laws — leyes","title":"Approved laws — leyes","text":"Check many laws approved. Note might now return laws approved.","code":""},{"path":"/dev/reference/leyes.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Approved laws — leyes","text":"","code":"leyes(legislatura)"},{"path":"/dev/reference/leyes.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Approved laws — leyes","text":"legislatura numeric value. Constituent 0.","code":""},{"path":"/dev/reference/leyes.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Approved laws — leyes","text":"data.frame approved laws related information.","code":""},{"path":"/dev/reference/leyes.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Approved laws — leyes","text":"","code":"if (interactive()) { l <- leyes(14) head(l) }"},{"path":"/dev/reference/mociones.html","id":null,"dir":"Reference","previous_headings":"","what":"Mociones — mociones","title":"Mociones — mociones","text":"Download mociones","code":""},{"path":"/dev/reference/mociones.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Mociones — mociones","text":"","code":"mociones(legislatura)"},{"path":"/dev/reference/mociones.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Mociones — mociones","text":"legislatura numeric value. Constituent 0.","code":""},{"path":"/dev/reference/mociones.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Mociones — mociones","text":"data.frame information mociones.","code":""},{"path":[]},{"path":"/dev/reference/mociones.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Mociones — mociones","text":"","code":"if (interactive()) { mociones(13) }"},{"path":"/dev/reference/organigrama.html","id":null,"dir":"Reference","previous_headings":"","what":"Organization chart — organigrama","title":"Organization chart — organigrama","text":"Retrieves relationships people responsible Senate. moment due limitation website works 13 legislature.","code":""},{"path":"/dev/reference/organigrama.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Organization chart — organigrama","text":"","code":"organigrama(legislatura = 13)"},{"path":"/dev/reference/organigrama.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Organization chart — organigrama","text":"legislatura numeric value 12 (information prior ).","code":""},{"path":"/dev/reference/organigrama.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Organization chart — organigrama","text":"data.frame information available.","code":""},{"path":"/dev/reference/organigrama.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Organization chart — organigrama","text":"","code":"head(organigrama()) #> nivel #> 1 1 #> 2 2 #> 3 3 #> 4 3 #> 5 2 #> 6 3 #> nombreOficial #> 1 Secretaría General #> 2 Gabinete del Secretario General #> 3 Gabinete dependiente de la Secretaría General de Unidad de asesoramiento #> 4 Unidad de Coordinación, control y evaluación de proyectos #> 5 Servicio de Dotación de Seguridad #> 6 Unidad de Gestión Administrativa #> nombre codigo codigoPadre #> 1 Secretaría General 8 #> 2 Gabinete del Secretario General 223 8 #> 3 Unidad de asesoramiento 218 223 #> 4 Unidad de Coordinación, control y evaluación de proyectos 207 223 #> 5 Dotación de Seguridad 208 8 #> 6 Gestión Administrativa 235 208 #> tipoDependencia jefe dirCorreo #> 1 AD MANUEL CAVERO GÓMEZ secretarialetradomayor@senado.es #> 2 GAB #> 3 GAB #> 4 GAB #> 5 SER #> 6 UNI #> numTelefono #> 1 91 538 14 00 #> 2 #> 3 #> 4 #> 5 #> 6"},{"path":"/dev/reference/plenarias.html","id":null,"dir":"Reference","previous_headings":"","what":"Plenary sessions — plenarias","title":"Plenary sessions — plenarias","text":"many session .","code":""},{"path":"/dev/reference/plenarias.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Plenary sessions — plenarias","text":"","code":"plenarias(legislatura = 10)"},{"path":"/dev/reference/plenarias.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Plenary sessions — plenarias","text":"legislatura numeric value 12 (information prior ).","code":""},{"path":"/dev/reference/plenarias.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Plenary sessions — plenarias","text":"data.frame information available.","code":""},{"path":"/dev/reference/plenarias.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Plenary sessions — plenarias","text":"","code":"if (interactive()) { head(plenarias(10)) }"},{"path":"/dev/reference/senador.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieves the open data of a senator. — senador","title":"Retrieves the open data of a senator. — senador","text":"Retrieves open data senator.","code":""},{"path":"/dev/reference/senador.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieves the open data of a senator. — senador","text":"","code":"senador(legislatura, codigo)"},{"path":"/dev/reference/senador.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieves the open data of a senator. — senador","text":"legislatura numeric value. Constituent 0. codigo Number idweb senator.","code":""},{"path":"/dev/reference/senador.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieves the open data of a senator. — senador","text":"","code":"if (interactive()) { s <- senador(14, 19050) head(s) }"},{"path":"/dev/reference/senadores.html","id":null,"dir":"Reference","previous_headings":"","what":"Senators since 1977 — senadores","title":"Senators since 1977 — senadores","text":"Past current appointed members.","code":""},{"path":"/dev/reference/senadores.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Senators since 1977 — senadores","text":"","code":"senadores()"},{"path":"/dev/reference/senadores.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Senators since 1977 — senadores","text":"data.frame information available.","code":""},{"path":"/dev/reference/senadores.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Senators since 1977 — senadores","text":"","code":"if (interactive()) { head(senadores()) }"},{"path":"/dev/reference/sumario.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve the document of sumario — sumario","title":"Retrieve the document of sumario — sumario","text":"Returns summary session tidy way. multiple autors involved disposicion multiple documents get mixed.","code":""},{"path":"/dev/reference/sumario.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve the document of sumario — sumario","text":"","code":"sumario(cve)"},{"path":"/dev/reference/sumario.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve the document of sumario — sumario","text":"cve character CVE document.","code":""},{"path":"/dev/reference/sumario.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Retrieve the document of sumario — sumario","text":"data.frame summary session, date, documents, authors.","code":""},{"path":[]},{"path":"/dev/reference/sumario.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieve the document of sumario — sumario","text":"","code":"sumario_csv <- sumario_csv(14, 3) if (interactive()) { head(sumario(sumario_csv)) }"},{"path":"/dev/reference/sumario_csv.html","id":null,"dir":"Reference","previous_headings":"","what":"Summary code for a session — sumario_csv","title":"Summary code for a session — sumario_csv","text":"Creates code summary session senate.","code":""},{"path":"/dev/reference/sumario_csv.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Summary code for a session — sumario_csv","text":"","code":"sumario_csv(legislatura, sesion)"},{"path":"/dev/reference/sumario_csv.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Summary code for a session — sumario_csv","text":"legislatura numeric value. Constituent 0. sesion numeric value 0.","code":""},{"path":"/dev/reference/sumario_csv.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Summary code for a session — sumario_csv","text":"character id code summary session.","code":""},{"path":[]},{"path":"/dev/reference/sumario_csv.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Summary code for a session — sumario_csv","text":"","code":"sumario_csv(14, 1) #> [1] \"BOCG_S_14_1\""},{"path":"/dev/reference/votos.html","id":null,"dir":"Reference","previous_headings":"","what":"Votos — votos","title":"Votos — votos","text":"Retrieve votes sesion.","code":""},{"path":"/dev/reference/votos.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Votos — votos","text":"","code":"votos(legislatura, sesion, votacion = NULL)"},{"path":"/dev/reference/votos.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Votos — votos","text":"legislatura numeric value. Constituent 0. sesion number meeting. votacion Number vote.","code":""},{"path":"/dev/reference/votos.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Votos — votos","text":"votos class information voted .","code":""},{"path":"/dev/reference/votos.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Votos — votos","text":"","code":"votos_64 <- votos(14, 64) votos_3_8 <- votos(14, 3, 8)"},{"path":"/dev/news/index.html","id":"senadores-development-version","dir":"Changelog","previous_headings":"","what":"senadoRES (development version)","title":"senadoRES (development version)","text":"Add new function votes sessions votes().","code":""},{"path":"/dev/news/index.html","id":"senadores-010","dir":"Changelog","previous_headings":"","what":"senadoRES 0.1.0","title":"senadoRES 0.1.0","text":"Added NEWS.md file track changes package.","code":""}]
+[{"path":"/dev/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"MIT License","title":"MIT License","text":"Copyright (c) 2020 senadoRES authors Permission hereby granted, free charge, person obtaining copy software associated documentation files (“Software”), deal Software without restriction, including without limitation rights use, copy, modify, merge, publish, distribute, sublicense, /sell copies Software, permit persons Software furnished , subject following conditions: copyright notice permission notice shall included copies substantial portions Software. SOFTWARE PROVIDED “”, WITHOUT WARRANTY KIND, EXPRESS IMPLIED, INCLUDING LIMITED WARRANTIES MERCHANTABILITY, FITNESS PARTICULAR PURPOSE NONINFRINGEMENT. EVENT SHALL AUTHORS COPYRIGHT HOLDERS LIABLE CLAIM, DAMAGES LIABILITY, WHETHER ACTION CONTRACT, TORT OTHERWISE, ARISING , CONNECTION SOFTWARE USE DEALINGS SOFTWARE.","code":""},{"path":"/dev/articles/senadoRES.html","id":"senadores","dir":"Articles","previous_headings":"","what":"Senadores","title":"Getting Started","text":"function return members Senate: can see increase females Senate along legislatures:","code":"ts <- senadores() head(ts) #> nombre apellidos legislatura ultCredencial procedTipo #> 1 FERNANDO ABAD BÉCQUER 5 260 D #> 2 ENRIQUE ABAD BENEDICTO 10 034 E #> 3 ELISABET ABAD GIRALT 12 051 D #> 4 JOSÉ ANTONIO ABAD LÓPEZ-BREA 3 039 E #> 5 ADOLFO ABEJÓN ORTEGA 9 081 E #> 6 FRANCISCO ABELLÁN MARTÍNEZ 9 242 D #> procedLiteral procedLugar grupoCod #> 1 Designado Asamblea de Madrid Asamblea de Madrid #> 2 Electo Sevilla Sevilla #> 3 Designada Parlamento de Cataluña Parlamento de Cataluña #> 4 Electo Zamora Zamora #> 5 Electo Valladolid Valladolid #> 6 Designado Asamblea Regional de Murcia Asamblea Regional de Murcia #> grupoSiglas grupoNombre sex #> 1 800 GPS male #> 2 800 GPS male #> 3 807 GPN female #> 4 CP GPCP male #> 5 801 GPP male #> 6 800 GPS male ts %>% group_by(legislatura) %>% count(sex) %>% mutate(total = sum(n)) %>% filter(!is.na(sex)) %>% mutate(ratio = n/total) %>% filter(sex != \"male\") %>% ggplot() + geom_point(aes(legislatura, ratio, col = sex, shape = sex), size = 3) + geom_hline(yintercept = 0.5, linetype = 2, col = \"red\") + scale_x_continuous(breaks = seq_len(15)) + scale_y_continuous(breaks = seq(from = 0, to = 0.7, by = .1), expand = expansion(add = c(0, 0.01)), limits = c(0, NA)) + theme_minimal() + labs(title = \"Ratio of women\", x = \"Legislatura\", y = \"Ratio of women\")"},{"path":"/dev/articles/senadoRES.html","id":"documents","dir":"Articles","previous_headings":"","what":"Documents","title":"Getting Started","text":"Senate publication different types documents. three main documents document, boletin sumario. recognized documents code named CSV. can create CSV : found CSV aren’t sure code valid check_code(). valid CSV can retrieve information document: omitted column functions also return text explaining document bit verbose show. refer session, provide information. make easier retrieve information possible session can : interested single document can use:","code":"document_csv(legislatura = 14, sesion = 1, number = 1) #> [1] \"BOCG_D_14_1_1\" boletin_csv(legislatura = 14, sesion = 1) #> [1] \"BOCG_T_14_1\" sumario_csv(legislatura = 14, sesion = 1) #> [1] \"BOCG_S_14_1\" boletin_csv <- boletin_csv(14, 3) b <- boletin(boletin_csv) head(b[, c(1:14, 16)]) #> SECC NBOL ANNO FECHA CVE PAGI #> 1 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> 2 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> 3 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> 4 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> 5 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> 6 S 3 2019 2019-12-11 BOCG_T_14_3 1 #> apartado #> 1 IV. Otras actividades parlamentarias #> 2 VI. Administración del Senado #> 3 VI. Administración del Senado #> 4 VI. Administración del Senado #> 5 VI. Administración del Senado #> 6 VI. Administración del Senado #> subapartado numpag numpagfin DISP #> 1 Acuerdos e Informes de la Diputación Permanente 2 2 10 #> 2 Personal eventual 3 3 11 #> 3 Personal eventual 4 4 12 #> 4 Personal eventual 5 5 13 #> 5 Personal eventual 6 6 14 #> 6 Personal eventual 7 7 15 #> TITULO #> 1 Informe por el que se da cuenta a la nueva Cámara de los asuntos tramitados por la Diputación Permanente y de sus decisiones, en cumplimiento de lo dispuesto en el artículo 78.4 de la Constitución (se corresponde con el número de expediente 561/000020 de la XIII Legislatura). #> 2 Personal eventual al servicio del ex-Presidente del Senado. #> 3 Personal eventual adscrito a la Presidencia del Senado. #> 4 Personal eventual adscrito a la Vicepresidencia Primera del Senado. #> 5 Personal eventual adscrito a la Vicepresidencia Segunda del Senado. #> 6 Personal eventual adscrito a la Secretaría Primera del Senado. #> FASE NUMEXP document #> 1 Conocimiento por el Pleno 561/000002 BOCG_D_14_3_10 #> 2 Nombramientos 523/000002 BOCG_D_14_3_11 #> 3 Nombramientos 523/000003 BOCG_D_14_3_12 #> 4 Nombramientos 523/000004 BOCG_D_14_3_13 #> 5 Nombramientos 523/000005 BOCG_D_14_3_14 #> 6 Nombramientos 523/000006 BOCG_D_14_3_15 sumario_csv <- sumario_csv(legislatura = 14, sesion = 1) s <- sumario(sumario_csv) head(s) #> idlegislatura idnumero fechaBol nomSumBol nomSumTBol #> 1 14 1 2019-12-05 BOCG_S_14_1 BOCG_T_14_1 #> 2 14 1 2019-12-05 BOCG_S_14_1 BOCG_T_14_1 #> 3 14 1 2019-12-05 BOCG_S_14_1 BOCG_T_14_1 #> directorioBol apNumRomano apDescripcion #> 1 legis14/publicaciones/pdf/senado/bocg VI ADMINISTRACIÓN DEL SENADO #> 2 legis14/publicaciones/pdf/senado/bocg VI ADMINISTRACIÓN DEL SENADO #> 3 legis14/publicaciones/pdf/senado/bocg VI ADMINISTRACIÓN DEL SENADO #> subDescripcion #> 1 PERSONAL EVENTUAL #> 2 PERSONAL EVENTUAL #> 3 PERSONAL EVENTUAL #> objeto #> 1 Personal eventual del Senado como Asistentes de los señores Senadores de los Grupos Parlamentarios de la XIII Legislatura. #> 2 Personal eventual adscrito a la Presidencia, Vicepresidencias Primera y Segunda y Secretarías Primera y Cuarta del Senado de la XIII Legislatura. #> 3 Personal eventual al servicio del ex-Presidente del Senado. #> tipoExpediente disp cve fase #> 1 511 9309 BOCG_D_14_1_1 Ceses #> 2 523 9310 BOCG_D_14_1_2 Ceses #> 3 523 9311 BOCG_D_14_1_3 Ceses bs <- boletin_sumario(legislatura = 14, sesion = 3) head(bs) #> cve idnumero idlegislatura fechaBol nomSumBol nomSumTBol #> 1 BOCG_D_14_3_10 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> 2 BOCG_D_14_3_11 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> 3 BOCG_D_14_3_12 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> 4 BOCG_D_14_3_13 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> 5 BOCG_D_14_3_14 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> 6 BOCG_D_14_3_15 3 14 2019-12-11 BOCG_S_14_3 BOCG_T_14_3 #> directorioBol directorioXmlBol #> 1 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> 2 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> 3 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> 4 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> 5 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> 6 legis14/publicaciones/pdf/senado/bocg legis14/publicaciones/xml/senado/bocg #> directorioEpubBol apNumRomano #> 1 legis14/publicaciones/epub/senado/bocg IV #> 2 legis14/publicaciones/epub/senado/bocg VI #> 3 legis14/publicaciones/epub/senado/bocg VI #> 4 legis14/publicaciones/epub/senado/bocg VI #> 5 legis14/publicaciones/epub/senado/bocg VI #> 6 legis14/publicaciones/epub/senado/bocg VI #> apDescripcion #> 1 OTRAS ACTIVIDADES PARLAMENTARIAS #> 2 ADMINISTRACIÓN DEL SENADO #> 3 ADMINISTRACIÓN DEL SENADO #> 4 ADMINISTRACIÓN DEL SENADO #> 5 ADMINISTRACIÓN DEL SENADO #> 6 ADMINISTRACIÓN DEL SENADO #> subDescripcion #> 1 ACUERDOS E INFORMES DE LA DIPUTACIÓN PERMANENTE #> 2 PERSONAL EVENTUAL #> 3 PERSONAL EVENTUAL #> 4 PERSONAL EVENTUAL #> 5 PERSONAL EVENTUAL #> 6 PERSONAL EVENTUAL #> objeto #> 1 Informe por el que se da cuenta a la nueva Cámara de los asuntos tramitados por la Diputación Permanente y de sus decisiones, en cumplimiento de lo dispuesto en el artículo 78.4 de la Constitución (se corresponde con el número de expediente 561/000020 de la XIII Legislatura). #> 2 Personal eventual al servicio del ex-Presidente del Senado. #> 3 Personal eventual adscrito a la Presidencia del Senado. #> 4 Personal eventual adscrito a la Vicepresidencia Primera del Senado. #> 5 Personal eventual adscrito a la Vicepresidencia Segunda del Senado. #> 6 Personal eventual adscrito a la Secretaría Primera del Senado. #> tipoExpediente disp fase SECC ANNO FECHA #> 1 561 9318 Conocimiento por el Pleno S 2019 2019-12-11 #> 2 523 9319 Nombramientos S 2019 2019-12-11 #> 3 523 9320 Nombramientos S 2019 2019-12-11 #> 4 523 9321 Nombramientos S 2019 2019-12-11 #> 5 523 9322 Nombramientos S 2019 2019-12-11 #> 6 523 9323 Nombramientos S 2019 2019-12-11 #> CVE PAGI apartado #> 1 BOCG_T_14_3 1 IV. Otras actividades parlamentarias #> 2 BOCG_T_14_3 1 VI. Administración del Senado #> 3 BOCG_T_14_3 1 VI. Administración del Senado #> 4 BOCG_T_14_3 1 VI. Administración del Senado #> 5 BOCG_T_14_3 1 VI. Administración del Senado #> 6 BOCG_T_14_3 1 VI. Administración del Senado #> subapartado numpag numpagfin DISP #> 1 Acuerdos e Informes de la Diputación Permanente 2 2 10 #> 2 Personal eventual 3 3 11 #> 3 Personal eventual 4 4 12 #> 4 Personal eventual 5 5 13 #> 5 Personal eventual 6 6 14 #> 6 Personal eventual 7 7 15 #> TITULO #> 1 Informe por el que se da cuenta a la nueva Cámara de los asuntos tramitados por la Diputación Permanente y de sus decisiones, en cumplimiento de lo dispuesto en el artículo 78.4 de la Constitución (se corresponde con el número de expediente 561/000020 de la XIII Legislatura). #> 2 Personal eventual al servicio del ex-Presidente del Senado. #> 3 Personal eventual adscrito a la Presidencia del Senado. #> 4 Personal eventual adscrito a la Vicepresidencia Primera del Senado. #> 5 Personal eventual adscrito a la Vicepresidencia Segunda del Senado. #> 6 Personal eventual adscrito a la Secretaría Primera del Senado. #> FASE NUMEXP #> 1 Conocimiento por el Pleno 561/000002 #> 2 Nombramientos 523/000002 #> 3 Nombramientos 523/000003 #> 4 Nombramientos 523/000004 #> 5 Nombramientos 523/000005 #> 6 Nombramientos 523/000006 #> text #> 1 El Pleno del Senado, en la sesión constitutiva celebrada el día 3 de diciembre de 2019, ha tomado conocimiento del Informe de la Diputación Permanente de la XIII Legislatura por el que se da cuenta a la nueva Cámara de los asuntos tramitados por la Diputación Permanente y de sus decisiones, en cumplimiento de lo dispuesto en el artículo 78.4 de la Constitución, que aparece publicado en el BOCG, Senado, número 2, de fecha 10 de diciembre de 2019.Lo que se publica para general conocimiento.Palacio del Senado, 3 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. #> 2 En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales y de conformidad con lo establecido en el acuerdo relativo al estatuto del ex-Presidente, aprobado por la Mesa del Senado con fecha 21 de mayo de 2019, y a propuesta del Excmo. Sr. D. Pío García-Escudero Márquez, la Excma. Sra. Presidenta del Senado ha resuelto nombrar a las personas que abajo se relacionan como personal eventual del Senado, en el cargo que para cada uno de ellos se señala, con efectos del día 3 de diciembre de 2019:— D.ª María Angélica Aguirre Álvarez (Asistente del ex-Presidente)— D. José Manuel Bustos Bao (conductor del ex-Presidente)Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. #> 3 En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales la Excma. Sra. Presidenta del Senado ha resuelto nombrar a las personas que abajo se relacionan como personal eventual del Senado adscritos a la Presidencia, en el cargo que para cada uno de ellos se señala, con efectos del día 3 de diciembre de 2019:— D. David Giménez Glück (Director de Gabinete de la Presidencia)— D.ª Victoria Luna Castaños (Directora de Comunicación de Presidencia)— D.ª Eva María Cuesta Cano (Adjunta de Comunicación)— D. Antonio García Maldonado (Asesor de la Presidenta)— D. Carles Martí Jufresa (Asesor de la Presidenta)— D.ª Elena Pardo de Santayana Villafranca (Jefa de la Secretaría de la Presidenta)— D.ª Beatriz Moreno Mínguez (Secretaria del Gabinete de la Presidencia)— D.ª María Teresa Giménez Fernández (Secretaria de la Presidenta)Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. #> 4 En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales, y a propuesta de la Excma. Sra. D.ª María Cristina Narbona Ruiz, la Excma. Sra. Presidenta del Senado ha resuelto nombrar a las personas que abajo se relacionan como personal eventual del Senado adscritas a la Vicepresidencia Primera, en el cargo que para cada uno de ellos se señala, con efectos del día 3 de diciembre de 2019:— D.ª Milagros Carreto Vega (Secretaria «A»)— D.ª María Isabel Vicente Elvira (Secretaria «B»)Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. #> 5 En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales, y a propuesta del Excmo. Sr. D. Pío García-Escudero Márquez, la Excma. Sra. Presidenta del Senado ha resuelto nombrar a las personas que abajo se relacionan como personal eventual del Senado adscritos a la Vicepresidencia Segunda, en el cargo que para cada uno de ellos se señala, con efectos del día 3 de diciembre de 2019:— D. Luis Hernández Martín (Secretario «A»)— D.ª María Isabel Hernanz Jaime (Secretaria «B»)Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. #> 6 En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales, y a propuesta del Excmo. Sr. D. Francisco Manuel Fajardo Palarea, la Excma. Sra. Presidenta del Senado ha resuelto nombrar D.ª María Sánchez Manzanares como personal eventual del Senado adscrita a la Secretaría Primera, en el cargo de Secretaria «A», con efectos del día 3 de diciembre de 2019.Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado.En virtud de lo dispuesto en el artículo 2 del Estatuto del Personal de las Cortes Generales, y a propuesta del Excmo. Sr. D. Francisco Manuel Fajardo Palarea, la Excma. Sra. Presidenta del Senado ha resuelto nombrar D. Carlos Alberto Magdaleno Galdona como personal eventual del Senado adscrito a la Secretaría Primera, en el cargo de Secretario «B», con efectos del día 3 de diciembre de 2019.Lo que se publica para general conocimiento.Palacio del Senado, 5 de diciembre de 2019.—P.D., Manuel Cavero Gómez, Letrado Mayor del Senado. document_csv <- \"BOCG_D_14_3_15\" d <- documento(document_csv) d[, 1:15] #> SECC NBOL ANNO DISP INIC #> 1 S 3 2019 15 523/000006 #> TITULO FASE #> 1 Personal eventual adscrito a la Secretaría Primera del Senado. Nombramientos #> FECHA CVE apartado subapartado #> 1 2019-12-11 BOCG_D_14_3_15 VI. Administración del Senado Personal eventual #> numpag numpagfin DISP.1 NUMEXP #> 1 7 7 15 523/000006"},{"path":"/dev/articles/senadoRES.html","id":"plenarias","dir":"Articles","previous_headings":"","what":"Plenarias","title":"Getting Started","text":"need know many plenary sessions done can check : Note information available X legislature onward times meet afternoon. want detailed information session can use fichUrlDetalleSesion details: help know talked, long topics documents got referenced.","code":"head(plenarias(10)) #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored #> sesionLegislatura sesionNumero sesionFechaInicio sesionHoraInicio #> 1 10 81 13 de octubre de 2015 16 hours #> 2 10 80 29 de septiembre de 2015 16 hours #> 3 10 79 8 de septiembre de 2015 16 hours #> 4 10 78 1 de septiembre de 2015 13 hours #> 5 10 77 16 de julio de 2015 12 hours #> 6 10 76 7 de julio de 2015 16 hours #> sesionTitulo #> 1 Sesión plenaria número 81 #> 2 Sesión plenaria número 80 #> 3 Sesión plenaria número 79 #> 4 Sesión plenaria número 78 #> 5 Sesión plenaria número 77 #> 6 Sesión plenaria número 76 #> urlPagina #> 1 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=85&legis=10&ns=81 #> 2 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=84&legis=10&ns=80 #> 3 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=82&legis=10&ns=79 #> 4 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=81&legis=10&ns=78 #> 5 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=80&legis=10&ns=77 #> 6 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=79&legis=10&ns=76 #> urlPaginaVotaciones #> 1 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=85&legis=10&ns=81&vot=vot #> 2 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=84&legis=10&ns=80&vot=vot #> 3 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=82&legis=10&ns=79&vot=vot #> 4 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=81&legis=10&ns=78&vot=vot #> 5 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=80&legis=10&ns=77&vot=vot #> 6 /web/actividadparlamentaria/sesionesplenarias/pleno/rwdsesionespleno/detalle/index.html?id=79&legis=10&ns=76&vot=vot #> fichUrlVotaciones #> 1 /legis10/votaciones/ses_81.xml #> 2 /legis10/votaciones/ses_80.xml #> 3 /legis10/votaciones/ses_79.xml #> 4 /legis10/votaciones/ses_78.xml #> 5 /legis10/votaciones/ses_77.xml #> 6 /legis10/votaciones/ses_76.xml #> fichUrlDetalleSesion #> 1 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=081&numConv=01&fecha=13102015 #> 2 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=080&numConv=01&fecha=29092015 #> 3 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=079&numConv=01&fecha=08092015 #> 4 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=078&numConv=01&fecha=01092015 #> 5 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=077&numConv=01&fecha=16072015 #> 6 /web/ficopendataservlet?tipoFich=11&legis=10&org=S000040&numSes=076&numConv=01&fecha=07072015 s <- lapply(10:14, plenarias) #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored #> Warning in Sys.setlocale(category = \"LC_TIME\", locale = \"es_ES.utf-8\"): OS #> reports request to set locale to \"es_ES.utf-8\" cannot be honored sessions <- do.call(rbind, s) ggplot(sessions) + stat_sum(aes(sesionLegislatura, sesionHoraInicio, fill = after_stat(n), size = 1), geom = \"tile\") + guides(size = \"none\") + theme_minimal() + labs(title = \"Hour of sessions\", x = \"Legislature\", y = \"Starting hour\", fill = \"Sessions\") + scale_y_continuous(breaks = 1:19) details <- detalles(paste0(\"https://www.senado.es\", sessions$fichUrlDetalleSesion[3])) details[1:5, c(\"asunto_id\", \"asunto_hora_inicio\", \"asunto_hora_fin\", \"punto_literal\", \"intervencion_orador_desc\", \"intervencion_orador_idWeb\")] #> asunto_id asunto_hora_inicio asunto_hora_fin punto_literal #> 1 146024 16:01 16:02 #> 2 146026 16:02 16:02 #> 3 146028 16:03 16:03 Actas #> 4 146029 16:03 16:03 Preguntas #> 5 146030 16:03 16:11 Preguntas #> intervencion_orador_desc intervencion_orador_idWeb #> 1 AGORRIA MARTÍNEZ, IDOIA 16825 #> 2 URQUIZU SANCHO, IGNACIO 16845 #> 3 #> 4 #> 5 LÓPEZ ÁGUEDA, ÓSCAR 15026"},{"path":"/dev/articles/senadoRES.html","id":"grupos","dir":"Articles","previous_headings":"","what":"Grupos","title":"Getting Started","text":"interested political groups composition certain legislature: Note record case starts XII legislature.","code":"g <- grupos(12) head(g) #> codigo nombre siglas notasWeb #> 1 801 GRUPO PARLAMENTARIO POPULAR EN EL SENADO GPP #> 2 801 GRUPO PARLAMENTARIO POPULAR EN EL SENADO GPP #> 3 800 GRUPO PARLAMENTARIO SOCIALISTA GPS #> 4 800 GRUPO PARLAMENTARIO SOCIALISTA GPS #> 5 800 GRUPO PARLAMENTARIO SOCIALISTA GPS #> 6 800 GRUPO PARLAMENTARIO SOCIALISTA GPS #> fechaConstitucion fechaBaja total totalElectos totalDesignados partidoCod #> 1 19/07/2016 41 32 9 PP #> 2 19/07/2016 41 32 9 PAR #> 3 19/07/2016 15 9 6 PSOE #> 4 19/07/2016 15 9 6 PSE-EE-PSOE- #> 5 19/07/2016 15 9 6 PSC-PSOE #> 6 19/07/2016 15 9 6 PSdeG-PSOE #> partidoSiglas partidoNombre #> 1 PP PARTIDO POPULAR #> 2 PAR PARTIDO ARAGONÉS #> 3 PSOE PARTIDO SOCIALISTA OBRERO ESPAÑOL #> 4 PSE-EE(PSOE) PARTIDO SOCIALISTA DE EUSKADI-EUSKADIKO EZKERRA (PSOE) #> 5 PSC-PSOE PARTIT DELS SOCIALISTES DE CATALUNYA #> 6 PSdeG-PSOE PARTIDO DOS SOCIALISTAS DE GALICIA-PSOE #> partidoUrl partidoTotal partidoTotalElectos #> 1 www.pp.es 40 31 #> 2 www.partidoaragones.es 1 1 #> 3 www.psoe.es 12 8 #> 4 www.socialistasvascos.com 1 0 #> 5 www.socialistes.cat 1 0 #> 6 www.psdeg-psoe.org 1 1 #> partidoTotalDesignados #> 1 9 #> 2 0 #> 3 4 #> 4 1 #> 5 1 #> 6 0"},{"path":"/dev/articles/senadoRES.html","id":"laws","dir":"Articles","previous_headings":"","what":"Laws","title":"Getting Started","text":"legislative chamber one important duties approve change laws- can see many got approved (note closer time still process approved):","code":"lex14 <- leyes(14) head(lex14) #> titulo #> 1 Ley 13/2023, de 24 de mayo, por la que se modifican la Ley 58/2003, de 17 de diciembre, General Tributaria, en transposición de la Directiva (UE) 2021/514 del Consejo de 22 de marzo de 2021, por la que se modifica la Directiva 2011/16/UE relativa a la cooperación administrativa en el ámbito de la fiscalidad, y otras normas tributarias (621/000088) #> 2 Ley 12/2023, de 24 de mayo, por el derecho a la vivienda (621/000089) #> 3 Ley 11/2023, de 8 de mayo, de trasposición de Directivas de la Unión Europea en materia de accesibilidad de determinados productos y servicios, migración de personas altamente cualificadas, tributaria y digitalización de actuaciones notariales y registrales; y por la que se modifica la Ley 12/2011, de 27 de mayo, sobre responsabilidad civil por daños nucleares o producidos por materiales radiactivos (621/000087) #> 4 Ley 10/2023, de 3 de abril, por la que se aprueba la metodología de señalamiento del cupo del País Vasco para el quinquenio 2022-2026 (621/000086) #> 5 Ley 9/2023, de 3 de abril, por la que se modifica la Ley 12/2002, de 23 de mayo, por la que se aprueba el Concierto Económico con la Comunidad Autónoma del País Vasco (621/000085) #> 6 Ley 8/2023, de 3 de abril, por la que se modifica la Ley 28/1990, de 26 de diciembre, por la que se aprueba el Convenio Económico entre el Estado y la Comunidad Foral de Navarra (621/000084) #> urlFichaLey #> 1 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000088 #> 2 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000089 #> 3 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000087 #> 4 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000086 #> 5 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000085 #> 6 https://www.senado.es/web/actividadparlamentaria/iniciativas/detalleiniciativa/index.html?legis=14&id1=621&id2=000084 #> anio boe #> 1 2023 B.O.E. nº 124, de 25 de Mayo de 2023 #> 2 2023 B.O.E. nº 124, de 25 de Mayo de 2023 #> 3 2023 B.O.E. nº 110, de 9 de Mayo de 2023 #> 4 2023 B.O.E. nº 80, de 4 de Abril de 2023 #> 5 2023 B.O.E. nº 80, de 4 de Abril de 2023 #> 6 2023 B.O.E. nº 80, de 4 de Abril de 2023 #> urlBoe #> 1 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2023-12204 #> 2 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2023-12203 #> 3 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2023-11022 #> 4 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2023-8456 #> 5 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2023-8455 #> 6 http://www.boe.es/diario_boe/txt.php?id=BOE-A-2023-8454 #> bloquesTematicos #> 1 ADMINISTRACIONES PÚBLICAS, JUSTICIA, ECONOMÍA. HACIENDA, INFORMACIÓN Y COMUNICACIÓN #> 2 URBANISMO. VIVIENDA, JUSTICIA, TRABAJO. POLÍTICA SOCIAL, DERECHO Y LIBERTADES PÚBLICAS #> 3 JUSTICIA, INDUSTRIA. COMERCIO. SERVICIOS, TRABAJO. POLÍTICA SOCIAL #> 4 UNIÓN EUROPEA, ECONOMÍA. HACIENDA, ORGANIZACIÓN TERRITORIAL DEL ESTADO #> 5 UNIÓN EUROPEA, ORGANIZACIÓN TERRITORIAL DEL ESTADO, ECONOMÍA. HACIENDA #> 6 ORGANIZACIÓN TERRITORIAL DEL ESTADO, ECONOMÍA. HACIENDA, UNIÓN EUROPEA #> numLey tipo #> 1 13 Ley #> 2 12 Ley #> 3 11 Ley #> 4 10 Ley #> 5 9 Ley #> 6 8 Ley"},{"path":"/dev/articles/senadoRES.html","id":"organization-chart","dir":"Articles","previous_headings":"Laws","what":"Organization chart","title":"Getting Started","text":"want know works position can check : Unfortunately doesn’t go back time, think shows current","code":"head(organigrama(13)) #> nivel #> 1 1 #> 2 2 #> 3 3 #> 4 3 #> 5 2 #> 6 3 #> nombreOficial #> 1 Secretaría General #> 2 Gabinete del Secretario General #> 3 Gabinete dependiente de la Secretaría General de Unidad de asesoramiento #> 4 Unidad de Coordinación, control y evaluación de proyectos #> 5 Servicio de Dotación de Seguridad #> 6 Unidad de Gestión Administrativa #> nombre codigo codigoPadre #> 1 Secretaría General 8 #> 2 Gabinete del Secretario General 223 8 #> 3 Unidad de asesoramiento 218 223 #> 4 Unidad de Coordinación, control y evaluación de proyectos 207 223 #> 5 Dotación de Seguridad 208 8 #> 6 Gestión Administrativa 235 208 #> tipoDependencia jefe dirCorreo #> 1 AD MANUEL CAVERO GÓMEZ secretarialetradomayor@senado.es #> 2 GAB #> 3 GAB #> 4 GAB #> 5 SER #> 6 UNI #> numTelefono #> 1 91 538 14 00 #> 2 #> 3 #> 4 #> 5 #> 6"},{"path":"/dev/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Lluís Revilla Sancho. Author, maintainer.","code":""},{"path":"/dev/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Revilla Sancho L (2024). senadoRES: Information Senate Spain. R package version 0.1.0.9000, https://github.com/llrs/senadoRES, https://llrs.github.io/senadoRES.","code":"@Manual{, title = {senadoRES: Information About the Senate of Spain}, author = {Lluís {Revilla Sancho}}, year = {2024}, note = {R package version 0.1.0.9000, https://github.com/llrs/senadoRES}, url = {https://llrs.github.io/senadoRES}, }"},{"path":"/dev/index.html","id":"senadores","dir":"","previous_headings":"","what":"Information About the Senate of Spain","title":"Information About the Senate of Spain","text":"goal senadoRES provide information Senate Spain. uses Open Data available XML files found exploring website.","code":""},{"path":"/dev/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Information About the Senate of Spain","text":"can install released version senadoRES :","code":"remotes::install_github(\"llrs/senadoRES\")"},{"path":"/dev/index.html","id":"example","dir":"","previous_headings":"","what":"Example","title":"Information About the Senate of Spain","text":"make easier work show data ’ll use packages:","code":"library(\"senadoRES\") library(\"dplyr\") #> #> Attaching package: 'dplyr' #> The following objects are masked from 'package:stats': #> #> filter, lag #> The following objects are masked from 'package:base': #> #> intersect, setdiff, setequal, union library(\"ggplot2\")"},{"path":"/dev/index.html","id":"senadores-1","dir":"","previous_headings":"Example","what":"Senadores","title":"Information About the Senate of Spain","text":"function return members Senate: can see increase females Senate along legislatures: see done: , first session 14th legislature dealt human resources. can check one documents, retrieve text documento.","code":"ts <- senadores() head(ts) #> nombre apellidos legislatura ultCredencial procedTipo #> 1 FERNANDO ABAD BÉCQUER 5 260 D #> 2 ENRIQUE ABAD BENEDICTO 10 034 E #> 3 ELISABET ABAD GIRALT 12 051 D #> 4 JOSÉ ANTONIO ABAD LÓPEZ-BREA 3 039 E #> 5 ADOLFO ABEJÓN ORTEGA 9 081 E #> 6 FRANCISCO ABELLÁN MARTÍNEZ 9 242 D #> procedLiteral procedLugar grupoCod #> 1 Designado Asamblea de Madrid Asamblea de Madrid #> 2 Electo Sevilla Sevilla #> 3 Designada Parlamento de Cataluña Parlamento de Cataluña #> 4 Electo Zamora Zamora #> 5 Electo Valladolid Valladolid #> 6 Designado Asamblea Regional de Murcia Asamblea Regional de Murcia #> grupoSiglas grupoNombre sex #> 1 800 GPS male #> 2 800 GPS male #> 3 807 GPN female #> 4 CP GPCP male #> 5 801 GPP male #> 6 800 GPS male ts %>% group_by(legislatura) %>% count(sex) %>% mutate(total = sum(n)) %>% filter(!is.na(sex)) %>% mutate(ratio = n/total) %>% filter(sex != \"male\") %>% ggplot() + geom_point(aes(legislatura, ratio), size = 5) + geom_hline(yintercept = 0.5, linetype = 2, col = \"red\") + scale_x_continuous(breaks = seq_len(15)) + scale_y_continuous(labels = scales::percent_format(accuracy = 1), breaks = seq(from = 0, to = 1, by = .1), expand = expansion(add = c(0.01, 0.01)), limits = c(0, NA)) + theme_minimal() + labs(title = \"Ratio of women\", x = \"Legislatura\", y = \"% of women\") + guides(col = \"none\", shape = \"none\") + theme(panel.grid.minor.x = element_blank()) b <- boletin(boletin_csv(14, 1)) b[, c(\"FECHA\", \"DISP\", \"apartado\", \"subapartado\", \"TITULO\", \"document\")] #> FECHA DISP apartado subapartado #> 1 2019-12-05 1 VI. Administración del Senado Personal eventual #> 2 2019-12-05 2 VI. Administración del Senado Personal eventual #> 3 2019-12-05 3 VI. Administración del Senado Personal eventual #> TITULO #> 1 Personal eventual del Senado como Asistentes de los señores Senadores de los Grupos Parlamentarios de la XIII Legislatura. #> 2 Personal eventual adscrito a la Presidencia, Vicepresidencias Primera y Segunda y Secretarías Primera y Cuarta del Senado de la XIII Legislatura. #> 3 Personal eventual al servicio del ex-Presidente del Senado. #> document #> 1 BOCG_D_14_1_1 #> 2 BOCG_D_14_1_2 #> 3 BOCG_D_14_1_3"},{"path":"/dev/reference/boletin.html","id":null,"dir":"Reference","previous_headings":"","what":"Boletin — boletin","title":"Boletin — boletin","text":"Boletin","code":""},{"path":"/dev/reference/boletin.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Boletin — boletin","text":"","code":"boletin(cve)"},{"path":"/dev/reference/boletin.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Boletin — boletin","text":"cve character boletin CVE.","code":""},{"path":"/dev/reference/boletin.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Boletin — boletin","text":"data.frame","code":""},{"path":[]},{"path":"/dev/reference/boletin.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Boletin — boletin","text":"","code":"boletin_csv <- boletin_csv(14, 3) b <- boletin(boletin_csv)"},{"path":"/dev/reference/boletin_csv.html","id":null,"dir":"Reference","previous_headings":"","what":"Boletin's code — boletin_csv","title":"Boletin's code — boletin_csv","text":"Creates code summary session senate documents got talk.","code":""},{"path":"/dev/reference/boletin_csv.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Boletin's code — boletin_csv","text":"","code":"boletin_csv(legislatura, sesion)"},{"path":"/dev/reference/boletin_csv.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Boletin's code — boletin_csv","text":"legislatura numeric value. Constituent 0. sesion numeric value 0.","code":""},{"path":"/dev/reference/boletin_csv.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Boletin's code — boletin_csv","text":"Summary session plus information documents discussed.","code":""},{"path":[]},{"path":"/dev/reference/boletin_csv.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Boletin's code — boletin_csv","text":"","code":"boletin_csv(14, 1) #> [1] \"BOCG_T_14_1\""},{"path":"/dev/reference/boletin_sumario.html","id":null,"dir":"Reference","previous_headings":"","what":"Info of a session — boletin_sumario","title":"Info of a session — boletin_sumario","text":"Merges information boletin() sumario()","code":""},{"path":"/dev/reference/boletin_sumario.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Info of a session — boletin_sumario","text":"","code":"boletin_sumario(legislatura, sesion)"},{"path":"/dev/reference/boletin_sumario.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Info of a session — boletin_sumario","text":"legislatura numeric value. Constituent 0. sesion numeric value 0.","code":""},{"path":"/dev/reference/boletin_sumario.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Info of a session — boletin_sumario","text":"data.frame","code":""},{"path":[]},{"path":"/dev/reference/boletin_sumario.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Info of a session — boletin_sumario","text":"","code":"bs <- boletin_sumario(14, 3)"},{"path":"/dev/reference/check_code.html","id":null,"dir":"Reference","previous_headings":"","what":"Check code — check_code","title":"Check code — check_code","text":"Check code","code":""},{"path":"/dev/reference/check_code.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Check code — check_code","text":"","code":"check_code(id)"},{"path":"/dev/reference/check_code.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Check code — check_code","text":"id Code official publication Senate","code":""},{"path":"/dev/reference/check_code.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Check code — check_code","text":"TRUE passes checks","code":""},{"path":"/dev/reference/check_code.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Check code — check_code","text":"","code":"check_code(\"BOCG_S_1_1\") #> [1] TRUE check_code(\"BOCG_B_1_1\") #> [1] TRUE check_code(\"BOCG_D_1_1_1\") #> [1] TRUE"},{"path":"/dev/reference/comisiones.html","id":null,"dir":"Reference","previous_headings":"","what":"Comisiones — comisiones","title":"Comisiones — comisiones","text":"Look comisiones ponencias legislature. Relevant know code work groups.","code":""},{"path":"/dev/reference/comisiones.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Comisiones — comisiones","text":"","code":"comisiones(legislatura)"},{"path":"/dev/reference/comisiones.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Comisiones — comisiones","text":"legislatura numeric value 12 (information prior ).","code":""},{"path":"/dev/reference/comisiones.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Comisiones — comisiones","text":"data.frame comisiones ponencias legislature.","code":""},{"path":"/dev/reference/comisiones.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Comisiones — comisiones","text":"","code":"if (interactive()) { comisiones(13) }"},{"path":"/dev/reference/detalles.html","id":null,"dir":"Reference","previous_headings":"","what":"Check individual session — detalles","title":"Check individual session — detalles","text":"Check individual session","code":""},{"path":"/dev/reference/detalles.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Check individual session — detalles","text":"","code":"detalles(url)"},{"path":"/dev/reference/detalles.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Check individual session — detalles","text":"url url path session.","code":""},{"path":"/dev/reference/detalles.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Check individual session — detalles","text":"data.frame information session.","code":""},{"path":[]},{"path":"/dev/reference/detalles.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Check individual session — detalles","text":"","code":"if (interactive()) { pl <- plenarias(10) detalles(pl$fichUrlDetalleSesion[1]) }"},{"path":"/dev/reference/document_csv.html","id":null,"dir":"Reference","previous_headings":"","what":"Document CVE — document_csv","title":"Document CVE — document_csv","text":"Code needd retrieve data document.","code":""},{"path":"/dev/reference/document_csv.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Document CVE — document_csv","text":"","code":"document_csv(legislatura, sesion, number)"},{"path":"/dev/reference/document_csv.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Document CVE — document_csv","text":"legislatura numeric value. Constituent 0. sesion numeric value 0. number numeric value ","code":""},{"path":"/dev/reference/document_csv.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Document CVE — document_csv","text":"character vector valid CVE.","code":""},{"path":[]},{"path":"/dev/reference/document_csv.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Document CVE — document_csv","text":"","code":"document_csv(14, 1, 1) #> [1] \"BOCG_D_14_1_1\""},{"path":"/dev/reference/documento.html","id":null,"dir":"Reference","previous_headings":"","what":"A document — documento","title":"A document — documento","text":"document","code":""},{"path":"/dev/reference/documento.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"A document — documento","text":"","code":"documento(cve)"},{"path":"/dev/reference/documento.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"A document — documento","text":"cve character document CVE.","code":""},{"path":[]},{"path":"/dev/reference/documento.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"A document — documento","text":"","code":"document_csv <- \"BOCG_D_14_110_901\" if (interactive()) { documento(document_csv) }"},{"path":"/dev/reference/get_xml.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve the XML content — get_xml","title":"Retrieve the XML content — get_xml","text":"Look internet get content","code":""},{"path":"/dev/reference/get_xml.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve the XML content — get_xml","text":"","code":"get_xml(query, encoding)"},{"path":"/dev/reference/get_xml.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve the XML content — get_xml","text":"query character url query website. encoding character encoding, usually either \"windows-1252\", \"ISO-8859-15\" \"UTF-8\".","code":""},{"path":"/dev/reference/grupos.html","id":null,"dir":"Reference","previous_headings":"","what":"Political groups and parties — grupos","title":"Political groups and parties — grupos","text":"Retrieves data term groups political parties present","code":""},{"path":"/dev/reference/grupos.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Political groups and parties — grupos","text":"","code":"grupos(legislatura)"},{"path":"/dev/reference/grupos.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Political groups and parties — grupos","text":"legislatura numeric value 12 (information prior ).","code":""},{"path":"/dev/reference/grupos.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Political groups and parties — grupos","text":"matrix information available.","code":""},{"path":"/dev/reference/grupos.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Political groups and parties — grupos","text":"","code":"if (interactive()){ grupos(13) }"},{"path":"/dev/reference/iniciativa_parlamentaria.html","id":null,"dir":"Reference","previous_headings":"","what":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","title":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","text":"Retrieve information individual iniciativa parlamentaria.","code":""},{"path":"/dev/reference/iniciativa_parlamentaria.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","text":"","code":"iniciativa_parlamentaria(legislatura, numex)"},{"path":"/dev/reference/iniciativa_parlamentaria.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","text":"legislatura numeric value. Constituent 0. numex String code document form XXX/YYYYYY.","code":""},{"path":"/dev/reference/iniciativa_parlamentaria.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","text":"data.frame situation, title type document, dates many .","code":""},{"path":"/dev/reference/iniciativa_parlamentaria.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Individual document of Iniciativa parlamentaria — iniciativa_parlamentaria","text":"","code":"document_csv <- \"BOCG_D_14_110_901\" if (interactive()){ d <- documento(document_csv) hd <- iniciativa_parlamentaria(14, d$NUMEXP) }"},{"path":"/dev/reference/iniciativas.html","id":null,"dir":"Reference","previous_headings":"","what":"Look up the legislative iniciatives — iniciativas","title":"Look up the legislative iniciatives — iniciativas","text":"Look legislative iniciatives","code":""},{"path":"/dev/reference/iniciativas.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Look up the legislative iniciatives — iniciativas","text":"","code":"iniciativas(legislatura)"},{"path":"/dev/reference/iniciativas.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Look up the legislative iniciatives — iniciativas","text":"legislatura numeric value. Constituent 0.","code":""},{"path":"/dev/reference/iniciativas.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Look up the legislative iniciatives — iniciativas","text":"data.frame initiatives legislature.","code":""},{"path":[]},{"path":"/dev/reference/iniciativas.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Look up the legislative iniciatives — iniciativas","text":"","code":"if (interactive()) { iniciativas(14) }"},{"path":"/dev/reference/leyes.html","id":null,"dir":"Reference","previous_headings":"","what":"Approved laws — leyes","title":"Approved laws — leyes","text":"Check many laws approved. Note might now return laws approved.","code":""},{"path":"/dev/reference/leyes.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Approved laws — leyes","text":"","code":"leyes(legislatura)"},{"path":"/dev/reference/leyes.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Approved laws — leyes","text":"legislatura numeric value. Constituent 0.","code":""},{"path":"/dev/reference/leyes.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Approved laws — leyes","text":"data.frame approved laws related information.","code":""},{"path":"/dev/reference/leyes.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Approved laws — leyes","text":"","code":"if (interactive()) { l <- leyes(14) head(l) }"},{"path":"/dev/reference/mociones.html","id":null,"dir":"Reference","previous_headings":"","what":"Mociones — mociones","title":"Mociones — mociones","text":"Download mociones","code":""},{"path":"/dev/reference/mociones.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Mociones — mociones","text":"","code":"mociones(legislatura)"},{"path":"/dev/reference/mociones.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Mociones — mociones","text":"legislatura numeric value. Constituent 0.","code":""},{"path":"/dev/reference/mociones.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Mociones — mociones","text":"data.frame information mociones.","code":""},{"path":[]},{"path":"/dev/reference/mociones.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Mociones — mociones","text":"","code":"if (interactive()) { mociones(13) }"},{"path":"/dev/reference/organigrama.html","id":null,"dir":"Reference","previous_headings":"","what":"Organization chart — organigrama","title":"Organization chart — organigrama","text":"Retrieves relationships people responsible Senate. moment due limitation website works 13 legislature.","code":""},{"path":"/dev/reference/organigrama.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Organization chart — organigrama","text":"","code":"organigrama(legislatura = 13)"},{"path":"/dev/reference/organigrama.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Organization chart — organigrama","text":"legislatura numeric value 12 (information prior ).","code":""},{"path":"/dev/reference/organigrama.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Organization chart — organigrama","text":"data.frame information available.","code":""},{"path":"/dev/reference/organigrama.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Organization chart — organigrama","text":"","code":"head(organigrama()) #> nivel #> 1 1 #> 2 2 #> 3 3 #> 4 3 #> 5 2 #> 6 3 #> nombreOficial #> 1 Secretaría General #> 2 Gabinete del Secretario General #> 3 Gabinete dependiente de la Secretaría General de Unidad de asesoramiento #> 4 Unidad de Coordinación, control y evaluación de proyectos #> 5 Servicio de Dotación de Seguridad #> 6 Unidad de Gestión Administrativa #> nombre codigo codigoPadre #> 1 Secretaría General 8 #> 2 Gabinete del Secretario General 223 8 #> 3 Unidad de asesoramiento 218 223 #> 4 Unidad de Coordinación, control y evaluación de proyectos 207 223 #> 5 Dotación de Seguridad 208 8 #> 6 Gestión Administrativa 235 208 #> tipoDependencia jefe dirCorreo #> 1 AD MANUEL CAVERO GÓMEZ secretarialetradomayor@senado.es #> 2 GAB #> 3 GAB #> 4 GAB #> 5 SER #> 6 UNI #> numTelefono #> 1 91 538 14 00 #> 2 #> 3 #> 4 #> 5 #> 6"},{"path":"/dev/reference/plenarias.html","id":null,"dir":"Reference","previous_headings":"","what":"Plenary sessions — plenarias","title":"Plenary sessions — plenarias","text":"many session .","code":""},{"path":"/dev/reference/plenarias.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Plenary sessions — plenarias","text":"","code":"plenarias(legislatura = 10)"},{"path":"/dev/reference/plenarias.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Plenary sessions — plenarias","text":"legislatura numeric value 12 (information prior ).","code":""},{"path":"/dev/reference/plenarias.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Plenary sessions — plenarias","text":"data.frame information available.","code":""},{"path":"/dev/reference/plenarias.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Plenary sessions — plenarias","text":"","code":"if (interactive()) { head(plenarias(10)) }"},{"path":"/dev/reference/senador.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieves the open data of a senator. — senador","title":"Retrieves the open data of a senator. — senador","text":"Retrieves open data senator.","code":""},{"path":"/dev/reference/senador.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieves the open data of a senator. — senador","text":"","code":"senador(legislatura, codigo)"},{"path":"/dev/reference/senador.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieves the open data of a senator. — senador","text":"legislatura numeric value. Constituent 0. codigo Number idweb senator.","code":""},{"path":"/dev/reference/senador.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieves the open data of a senator. — senador","text":"","code":"if (interactive()) { s <- senador(14, 19050) head(s) }"},{"path":"/dev/reference/senadores.html","id":null,"dir":"Reference","previous_headings":"","what":"Senators since 1977 — senadores","title":"Senators since 1977 — senadores","text":"Past current appointed members.","code":""},{"path":"/dev/reference/senadores.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Senators since 1977 — senadores","text":"","code":"senadores(legislatura = 12:14)"},{"path":"/dev/reference/senadores.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Senators since 1977 — senadores","text":"legislatura numeric value 12 (information prior ).","code":""},{"path":"/dev/reference/senadores.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Senators since 1977 — senadores","text":"data.frame information available.","code":""},{"path":"/dev/reference/senadores.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Senators since 1977 — senadores","text":"","code":"if (interactive()) { head(senadores(12)) }"},{"path":"/dev/reference/sumario.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve the document of sumario — sumario","title":"Retrieve the document of sumario — sumario","text":"Returns summary session tidy way. multiple authors involved disposition multiple documents get mixed.","code":""},{"path":"/dev/reference/sumario.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve the document of sumario — sumario","text":"","code":"sumario(cve)"},{"path":"/dev/reference/sumario.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve the document of sumario — sumario","text":"cve character CVE document.","code":""},{"path":"/dev/reference/sumario.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Retrieve the document of sumario — sumario","text":"data.frame summary session, date, documents, authors.","code":""},{"path":[]},{"path":"/dev/reference/sumario.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieve the document of sumario — sumario","text":"","code":"sumario_csv <- sumario_csv(14, 3) if (interactive()) { head(sumario(sumario_csv)) }"},{"path":"/dev/reference/sumario_csv.html","id":null,"dir":"Reference","previous_headings":"","what":"Summary code for a session — sumario_csv","title":"Summary code for a session — sumario_csv","text":"Creates code summary session senate.","code":""},{"path":"/dev/reference/sumario_csv.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Summary code for a session — sumario_csv","text":"","code":"sumario_csv(legislatura, sesion)"},{"path":"/dev/reference/sumario_csv.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Summary code for a session — sumario_csv","text":"legislatura numeric value. Constituent 0. sesion numeric value 0.","code":""},{"path":"/dev/reference/sumario_csv.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Summary code for a session — sumario_csv","text":"character id code summary session.","code":""},{"path":[]},{"path":"/dev/reference/sumario_csv.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Summary code for a session — sumario_csv","text":"","code":"sumario_csv(14, 1) #> [1] \"BOCG_S_14_1\""},{"path":"/dev/reference/votos.html","id":null,"dir":"Reference","previous_headings":"","what":"Votos — votos","title":"Votos — votos","text":"Retrieve votes sesion.","code":""},{"path":"/dev/reference/votos.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Votos — votos","text":"","code":"votos(legislatura, sesion, votacion = NULL)"},{"path":"/dev/reference/votos.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Votos — votos","text":"legislatura numeric value. Constituent 0. sesion number meeting. votacion Number vote.","code":""},{"path":"/dev/reference/votos.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Votos — votos","text":"votos class information voted .","code":""},{"path":"/dev/reference/votos.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Votos — votos","text":"","code":"# \\donttest{ votos_64 <- votos(14, 64) votos_3_8 <- votos(14, 3, 8) # }"},{"path":"/dev/news/index.html","id":"senadores-development-version","dir":"Changelog","previous_headings":"","what":"senadoRES (development version)","title":"senadoRES (development version)","text":"Add new function votes sessions votes().","code":""},{"path":"/dev/news/index.html","id":"senadores-010","dir":"Changelog","previous_headings":"","what":"senadoRES 0.1.0","title":"senadoRES 0.1.0","text":"Added NEWS.md file track changes package.","code":""}]