-
Notifications
You must be signed in to change notification settings - Fork 0
/
02_archivos-inicio_B.R
39 lines (29 loc) · 1.11 KB
/
02_archivos-inicio_B.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Texto sin acentos
#' Trabajando con el archivo .Rprofile
#'
#' Abre tu archivo R profile
usethis::edit_r_profile()
#' Cambiemos la conexion por defecto hacia CRAN
options(repos = c(CRAN = "https://cran.rstudio.com"))
## Verifiquemos que nuestra configuracion se actualizo
## usemos la funcion getOption("repos")
#' Cambiemos el mensaje de inicio de nuestra sesion de R, usaremos el paquete
#' 'cowsay' donde elegiremos nuestro animal favorito para darnos un saludo.
## Que animales tenemos disponibles? Elige tu favorito
sort(names(cowsay::animals))
## Imprime tu animal favorito junto con un mensaje de bienvenida al iniciar
## la sesion
## Agrega un color (o varios colores si lo deseas)
## Agrega un mensaje de despedida
if (interactive()) {
.First <- function() {
cowsay::say(what = "Bienvenidos al Taller CDSB2020",
what_color = "darkred",
by = "signbunny", by_color = "blue")
}
.Last <- function() {
cowsay::say("Caminos a la victoria hay, distintos que aplastar a un enemigo",
what_color = "orange",
by = "yoda", by_color = "green")
}
}