gpt4 book ai didi

r - 动画化 googleVis 图

转载 作者:行者123 更新时间:2023-12-02 07:04:28 26 4
gpt4 key购买 nike

我真的很喜欢动态图表的外观 here但我想为其他一些图(而不仅仅是散点图)制作动画。

例如,是否可以制作烛台图的动画?

最佳答案

尽管您提出了问题,但我的回答就好像您不关心使用 googleVis,只是想制作带有动画的烛台图表而不考虑样式。 (主要是因为我的风格很糟糕,而且 googleVis 图表是用非 R 工具制作的)

install.packages("quantmod")
install.packages("animation")
library(quantmod)
library(animation)

getSymbols("GS")

chartSeries(GS)


ani.options(interval = 0.05)
saveGIF({

for(i in 1:20){
candleChart(GS,multi.col=TRUE,theme='white',yrange=c(0,1200));
GS = GS+rnorm(3,50) ; # replace this with something interesting.
}

}, movie.name = "animation.gif", img.name = "Rplot", convert = "convert",
cmd.fun = system, clean = TRUE)

A moving candlestick chart

关于r - 动画化 googleVis 图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14777000/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com