library(ggplot2)
maria=25
alberto=23
box_speed <- ggplot(data=(cars), aes(x=speed))+
geom_boxplot()
print(maria)[1] 25
print(alberto)[1] 23
print(box_speed)library(ggplot2)
maria=25
alberto=23
box_speed <- ggplot(data=(cars), aes(x=speed))+
geom_boxplot()
print(maria)[1] 25
print(alberto)[1] 23
print(box_speed)