##DATA.FRAME CON LOS DATOS Software <- c(“Java”,“Java”,“Java”,“Java”,“Java”, “R”,“R”,“R”,“R”,“R”, “SQL”,“SQL”,“SQL”,“SQL”,“SQL”, “Statistica”, “Statistica”, “Statistica”,“Statistica”, “Statistica”, “Python”,“Python”,“Python”,“Python”, “Python”)

Año <- c(2017,2018,2019,2020,2021, 2017,2018,2019,2020,2021, 2017,2018,2019,2020,2021, 2017,2018,2019,2020,2021, 2017,2018,2019,2020,2021)

Búsquedas <- c(3180,2597,2312,1670,1187,4037,3916,3976,4089,3735,1970,1810,1692, 1128,88,0,0,0,0,0,721,810,1094,1049,844)

datos <- data.frame(Software, Año, Búsquedas)

datos <- data.frame(Software, Año, Búsquedas)

Including Plots

##CREAR GRÁTICO DE LÍNEAS MÚLTIPLES

library(ggplot2) ggplot(datos, aes(x=Año, y=Búsquedas, group = Software, colour =Software )) + geom_line() + geom_point( size=2, shape=21, fill=“white”) + theme_minimal()