Visualizzare le serie temporali in R
Arnaud Amsellem
Quantitative Trader and creator of the R Trader blog
hist(amazon_stocks,
breaks = 20,
main = "Distribuzione rendimenti AMAZON \\n gen 2015 - gen 2017",
xlab = "")

boxplot(amazon_stocks,
horizontal = TRUE,
main = "Distribuzione rendimenti AMAZON \\n gen 2015 - gen 2017")

boxplot(amazon_stocks,
horizontal = TRUE,
main = "Distribuzione rendimenti AMAZON \\n gen 2015 - gen 2017")

boxplot(amazon_stocks,
horizontal = TRUE,
main = "Distribuzione rendimenti AMAZON \\n gen 2015 - gen 2017")

acf(amazon_stocks,
main = "Autocorrelazioni rendimenti AMAZON \\n gen 2015 - gen 2017")

qqnorm(amazon_stocks,
main = "QQ-plot dei rendimenti AMAZON \\n gen 2015 - gen 2017")
qqline(amazon_stocks,
col = "red")

Visualizzare le serie temporali in R