display_dist(tourr)
display_dist()所属R语言包:tourr
1d distribution tour path animation.
1D分布游览路径动画。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Animate a 1d tour path with a density plot or histogram.
动画的一维的游览路径与密度图或直方图。
用法----------Usage----------
display_dist(method = "density", center = TRUE,
half_range = NULL, rug = FALSE, ...)
animate_dist(data, tour_path = grand_tour(1), ...)
参数----------Arguments----------
参数:method
display method, histogram or density plot
显示方法,直方图或密度图
参数:center
should 1d projection be centered to have mean zero (default: TRUE). This pins the centre of distribution to the same place, and makes it easier to focus on the shape of the distribution.
1D投影为中心,以均值为零(默认:TRUE)。这个引脚中心分配到同一个地方,并且可以更容易地集中分布的形状。
参数:half_range
half range to use when calculating limits of projected. If not set, defaults to maximum distance from origin to each row of data.
计算时使用的限制,预计一半范围。如果没有设置,默认为原产地为每个数据行的最大距离。
参数:rug
draw rug plot showing position of actual data points?
绘制地毯图,显示的实际数据点的位置吗?
参数:...
other arguments passed on to animate
其他参数传递给animate
参数:data
matrix, or data frame containing numeric columns
矩阵或数据框中包含数字的列
参数:tour_path
tour path generator, defaults to 2d grand tour
发电机游览路径,默认为二维盛大旅游
参见----------See Also----------
animate for options that apply to all animations
animate选项适用于所有的动画
实例----------Examples----------
animate_dist(flea[, 1:6])
# When the distribution is not centred, it tends to wander around in a[当分布不集中,往往在四处流浪]
# distracting manner[分散注意力的方式]
animate_dist(flea[, 1:6], center = FALSE)
# Alternatively, you can display the distribution with a histogram[或者,您可以用直方图显示分布]
animate_dist(flea[, 1:6], method = "hist")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|