planned_tour(tourr)
planned_tour()所属R语言包:tourr
A planned tour path.
计划的游览路径。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The planned tour takes you from one basis to the next in a set order. Once you have visited all the planned bases, you either stop or start from the beginning once more (if cycle = TRUE).
计划行程将带您从一个基础的一组命令。一旦您访问所有计划的基础,您可以停止或启动一次(如果从一开始就cycle = TRUE“)。
用法----------Usage----------
planned_tour(basis_set, cycle = FALSE)
参数----------Arguments----------
参数:basis_set
the set of bases as a list of projection matrices or a 3d array
的组的碱的投影矩阵作为一个列表或一个三维阵列
参数:cycle
cycle through continuously (TRUE) or stop after first pass (FALSE)
循环不断(TRUE)或停止后,第一阶段(FALSE)
Details
详细信息----------Details----------
Usually, you will not call this function directly, but will pass it to a method that works with tour paths like animate, save_history or render.
通常情况下,你会调用这个函数不直接,但将它传递给一个方法,工程,旅游路径,如animate,save_history或render。
参见----------See Also----------
The little_tour, a special type of planned tour which cycles between all axis parallel projections.
little_tour,一种特殊类型的计划的游览,所有轴的平行投影之间的循环。
实例----------Examples----------
twod <- save_history(flea[, 1:3], max = 5)
str(twod)
animate_xy(flea[, 1:3], planned_tour(twod))
animate_xy(flea[, 1:3], planned_tour(twod, TRUE))
oned <- save_history(flea[, 1:6], grand_tour(1), max = 3)
animate_dist(flea[, 1:6], planned_tour(oned))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|