data(vanke1127)
tab.price = table(vanke1127$price)
plot(as.numeric(names(tab.price)), as.numeric(tab.price), type = "h", xlab = "price",
ylab = "frequency")
oopt = ani.options(interval = 0.5, loop = FALSE, title = "Stock price of Vanke")
## a series of HTML animations with different time spans
saveHTML({
data(vanke1127)
price.ani(vanke1127$price, vanke1127$time, lwd = 2)
}, img.name = "vanke_a", description = "Prices changing along with time interval 15 min")
saveHTML({
data(vanke1127)
price.ani(vanke1127$price, vanke1127$time, span = 30 * 60, lwd = 3)
}, img.name = "vanke_b", description = "Prices changing along with time interval 30 min")
saveHTML({
data(vanke1127)
price.ani(vanke1127$price, vanke1127$time, span = 5 * 60, lwd = 2)
}, img.name = "vanke_c", description = "Prices changing along with time interval 5 min")
## GIF animation
saveGIF(price.ani(vanke1127$price, vanke1127$time, lwd = 2), movie.name = "price.gif",
loop = 1)
ani.options(oopt)
Run the code above in your browser using DataLab