File tree Expand file tree Collapse file tree 1 file changed +22
-6
lines changed
Expand file tree Collapse file tree 1 file changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -115,14 +115,30 @@ ns <- c(
115115)
116116
117117
118- cod_evento <- xml2 :: xml_text(xml2 :: xml_find_all(
119- conten_consulta_event_year , " //atom:entry//m:properties/d:CodigoEvento" , ns ))
118+ cod_evento <- xml2 :: xml_text(
119+ xml2 :: xml_find_all(
120+ conten_consulta_event_year ,
121+ " //atom:entry//m:properties/d:CodigoEvento" ,
122+ ns
123+ )
124+ )
120125
121- nom_evento <- xml2 :: xml_text(xml2 :: xml_find_all(
122- conten_consulta_event_year , " //atom:entry//m:properties/d:NombreEvento" , ns ))
126+ nom_evento <- xml2 :: xml_text(
127+ xml2 :: xml_find_all(
128+ conten_consulta_event_year ,
129+ " //atom:entry//m:properties/d:NombreEvento" ,
130+ ns
131+ )
132+ )
133+
134+ anno_evento <- xml2 :: xml_text(
135+ xml2 :: xml_find_all(
136+ conten_consulta_event_year ,
137+ " //atom:entry//m:properties/d:A_x00f1_o" ,
138+ ns
139+ )
140+ )
123141
124- anno_evento <- xml2 :: xml_text(xml2 :: xml_find_all(
125- conten_consulta_event_year , " //atom:entry//m:properties/d:A_x00f1_o" , ns ))
126142
127143lista_eventos <- data.frame (
128144 codigo = cod_evento ,
You can’t perform that action at this time.
0 commit comments