grand_tour(tourr)
grand_tour()所属R语言包:tourr
A grand tour path.
一个盛大的游览路径。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This method generates target bases by randomly sampling on the space of all d-dimensional planes in p-space.
这种方法生成目标碱基,通过随机抽样对空间的所有d维平面的空间。
用法----------Usage----------
grand_tour(d = 2)
参数----------Arguments----------
参数:d
target dimensionality
目标维度
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。
实例----------Examples----------
# All animation methods use the grand tour path by default[所有动画方法使用盛大的游览路径,默认情况下,]
animate_dist(flea[, 1:6])
animate_xy(flea[, 1:6])
animate_pcp(flea[, 1:6])
animate_pcp(flea[, 1:6], grand_tour(4))
# The grand tour is a function:[盛大旅游是一个函数:]
tour2d <- grand_tour(2)
is.function(tour2d)
# with two parameters, the previous projection and the data set[具有两个参数,以前的突起和数据集]
args(tour2d)
# if the previous projection is null, it will generate a starting[如果先前的预测是空的,它会产生一个开始]
# basis, otherwise the argument is ignored[的基础上,否则该参数将被忽略]
tour2d(NULL, mtcars)
# the data argument is just used to determine the correct dimensionality[数据参数只是用来确定正确的维]
# of the output matrix[的输出矩阵]
tour2d(NULL, mtcars[, 1:2])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|