a <- c(1, 2, 3, 4, 5)
a
## [1] 1 2 3 4 5
b <- c(1, 2, 3, 4, 5)
b
## [1] 1 2 3 4 5
plot(a,b)
plot(a,b, type="b", main="Ventas Totales", xlab="Semana", ylab="M USD")
plot(a,b, type="c", main="Ventas Totales", xlab="Semana", ylab="M USD")
plot(a,b, type="l", main="Ventas Totales", xlab="Semana", ylab="M USD")