help(recordPlot)
help(length)
.libPaths()
install.packages("ggplot2")
install.packages("devtools")
library("ggplot2")
url = "http://ichart.finance.yahoo.com/table.csv?s=SAP&a=01&b=19&c=1990&d=06&e=11&f=2013&g=d&ignore=.csv"
csv = read.csv(url)
nrow(csv)
head(csv)
summary(csv)
png(file = "R/myplot.png", bg = "white")
plot(csv$"Adj.Close"~as.Date(csv$Date),type="l")
dev.off()