Cómo crear y personalizar Gráficos de Línea en R | Aprende a programar en R desde 0 / Clase 12

En este tutorial aprenderemos a Crear y personalizar Gráficos de Línea en R. Aparte de crear el gráfico también le pondremos títulos, cambiaremos color, ancho y tipo de línea, así como añadir varias líneas en el mismo gráfico. Abajo tienes el código en R de los videos( Recuerda usar tus propios datos para hacer los ejemplos)


CODIGO EN R 

# Funcion plot

plot(pib_españa_per,type="l")


#PERSONALIZACION DE GRAFICOS

#Podemos personalizar el grafico cambiando los colores,el ancho de linea
# poner títulos o cmabiar el nombre de las variables entre otros



#Poner título
#Cambiar nombre de los ejes
#color = col
#ancho de linea = lwd
# Tipo de linea = lty
#añadir varios lineas en el mismo grafico


plot(pib_españa_per,type="l",main = " PIB PER CAPITA ESPAÑA") #TITULOS

plot(pib_españa_per,type="l",xlab= "EVOLUCIÓN ANUAL") #Eje x

plot(pib_españa_per,type="l",ylab= "DOLARES") #eje y

plot(pib_españa_per,type="l",main = " PIB PER CAPITA ESPAÑA",xlab= "EVOLUCIÓN ANUAL",ylab= "DOLARES")

#colores
?plot
plot(pib_españa_per,type="l",col = "green")

#ancho de lineas

plot(pib_españa_per,type="l",col = "green",lwd=3)

#6 tipos de lineas 

plot(pib_españa_per,type="l",col = "green",lwd=2,lty=6)


#à todas juntas en


par(mfrow = c(2, 3))

plot(pib_españa_per, type = "l", lwd = 2, lty = 1, main = "lty = 1")
plot(pib_españa_per, type = "l", lwd = 2, lty = 2, main = "lty = 2")
plot(pib_españa_per, type = "l", lwd = 2, lty = 3, main = "lty = 3")
plot(pib_españa_per, type = "l", lwd = 2, lty = 4, main = "lty = 4")
plot(pib_españa_per, type = "l", lwd = 2, lty = 5, main = "lty = 5")
plot(pib_españa_per, type = "l", lwd = 2, lty = 6, main = "lty = 6")

par(mfrow = c(1, 1))




# OTROS TIPOS DE GRAFICOS

type="l"

plot(pib_españa_per, type = "s", main = 'type = "s"') #escalera
plot(pib_españa_per, type = "b", main = 'type = "b"') #segmentos
plot(pib_españa_per, type = "o", main = 'type = "o"') # puntos


# tambien se puede especificar el simbolo en b y o, ya que hay 
# varias formas poniendo el argumento pch


plot(pib_españa_per, type = "b", pch=3) #segmentos

plot(pib_españa_per, type = "b", pch=21,bg="green",col="red")


plot(pib_españa_per,type="l",col="red", main=  "PIB per capita ESPAÑA, MEXICO y ARGENTINA",lwd = 2,lty = 2)
lines(pib_mexico_per,col="green",lwd = 2,lty = 1)
lines(pib_argentina_per,col="blue",lwd = 2,lty = 3)

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

Scroll al inicio