Función que descarga los discursos presidenciales ante la Asamblea Legislativa desde 1854 hasta 2020 (Function that downloads presidential speeches to de National Legislative Assembly from 1854 to 2020.)
get_speech(year = NULL, raw = FALSE)
| year | integer con identificador de discurso que se quiere seleccionar. Se puede explorar un listado de discursos con   | 
    
|---|---|
| raw | boleano que permite descargar discurso en formato tidy cuando   | 
    
Devuelve un tibble con clases "spec_tbl_df" "tbl_df" "tbl" "data.frame" con el contenido de un discurso presidencial en tres variables: 
discurso, presidente, year. 
 (it retruns a tibble with three variables (speech - discurso - president -presidente and year). 
The object is of class "tbl_df","tbl","data.frame").
get_speech(year = 1949)#> # A tibble: 9,233 x 3 #> word presidente year #> <chr> <chr> <dbl> #> 1 mensaje juan_peron 1949 #> 2 presidencial juan_peron 1949 #> 3 excelentísimo juan_peron 1949 #> 4 señor juan_peron 1949 #> 5 presidente juan_peron 1949 #> 6 nación juan_peron 1949 #> 7 inicia juan_peron 1949 #> 8 lectura juan_peron 1949 #> 9 mensaje juan_peron 1949 #> 10 senores juan_peron 1949 #> # ... with 9,223 more rows