如果你想做一个动画,那么有动画包,或者使用tkexamp
TeachingDemos 包中的函数创建的 GUI 的动画控制。color.scale.lines
您可以通过使用plotrix 包中的颜色渐变绘制最后几个点来增强动画效果。
这是一个例子:
library(TeachingDemos)
library(plotrix)
tmpfun <- function(start,numpoints=10) {
plot(ccc$Lon,ccc$Lat, xlab='Longitute', ylab='Lattitude', type='n')
to <- min(nrow(ccc), start+numpoints)
color.scale.lines( ccc$Lon[start:to], ccc$Lat[start:to],
c(0.7,0), c(0.7,0), c(0.7,0), colvar=seq_len(numpoints) )
}
tmplist <- list( numpoints=list('spinbox', init=10, from=1, to=nrow(ccc)),
start=list('animate',init=1, from=1, to=nrow(ccc)) )
tkexamp( tmpfun, tmplist )
这是考虑时间的第二个示例:
tmpfun2 <- function(start, dur=120) {
time <- as.numeric(h2h$Time3)
fr <- which( time >= start )[1]
if( is.na(fr) ) fr <- nrow(h2h)-1
to <- which( time >= start+dur )[1]
if( is.na(to) ) to <- nrow(h2h)
plot(h2h$Lon, h2h$Lat, xlab='Longitute', ylab='Lattitude',
type='n', main=paste('Times',time[fr],'to',time[to]) )
color.scale.lines( h2h$Lon[fr:to], h2h$Lat[fr:to],
c(0.7,0), c(0.7,0), c(0.7,0), colvar=time[fr:to])
}
tmplist2 <- list( dur=list('spinbox', init=120, from=10, to=1200),
start=list('animate',init=0, from=0, to=1780, delay=100,
resolution=10) )
tkexamp( tmpfun2, tmplist2 )
在任一示例中使用颜色可能会产生更有意义的颜色渐变。