groupLocation(shotGroups)
groupLocation()所属R语言包:shotGroups
Location measures for a single group of bullet holes
一个组的弹孔的位置措施
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculates location measures for a single group of bullet holes.
计算一个组的弹孔位置的措施。
用法----------Usage----------
conversion = 'm2cm', target = c('BDS', 'DSB'),
参数----------Arguments----------
参数:xy
a numerical (n x 2)-matrix with the (x,y)-coordinates of n points (1 row of coordinates per point).
数值(为nx 2)矩阵的n个点(1行的每点的坐标)的(x,y)的坐标。
参数:plots
a numerical value indicating whether a 2D-scatterplot should be shown. 0: no plot, 1: regular scatterplot, 2: scatterplot with added target in the background.
一个数字值,该值指示是否应该显示一个二维散点图。 0:没有图,1:定期散点图,2:散点图目标的背景。
参数:dstTarget
a numerical value giving the distance to the target in MOA calculation. See getMOA.
给予在氧化锌避雷器计算到目标的距离的数值。见getMOA。
参数:conversion
how to convert the measurement unit for distance to target to that of the (x,y)-coordinates in MOA calculation. See getMOA.
如何转换的测量单元,用于与目标距离的(x,y)的坐标计算中氧化锌避雷器。见getMOA。
参数:target
a character string indicating the target type to be drawn in the scatterplot. Currently, only two types of pistol targets are supported.
要绘制的散点图一个字符串表示的目标类型。目前,只有两种类型的手枪目标都支持。
参数:unit
a character string indicating the measurement unit for the (x,y)-coordinates. Only used with plot=2.
的(x,y)的坐标表示测量单元,用于一个字符的字符串。仅用于与plot=2。
参数:caliber
a numerical value indicating the bullet diameter in the measurement unit specified by unit. Only used with plot=2.
一个数字值,该值指示的子弹的直径测量单元中所指定unit。仅用于与plot=2。
值----------Value----------
A list with the results from the numerical analyses and statistical tests.
一个列表,从数值分析和统计检验的结果。
参数:ctr
(x,y)-offset of group center relative to point of aim.
(X,Y)因组中心的瞄准点。
参数:ctrRob
robust estimate of group center offset relative to point of aim (MCD algorithm).
稳健估计的群中心偏移的瞄准点(MCD的算法)。
参数:distPOA
distance from group center to point of aim (in original measurement units and MOA).
从组中心的瞄准点的距离(在原测量单位和MOA)。
参数:distPOArob
distance from robust estimate of group center to point of aim (in original measurement units and MOA).
稳健估计的组中心的瞄准点的距离(在原测量单位和MOA)。
参数:Hotelling
Hotelling's T^2-Test result from testing if group center equals point of aim.
的Hotelling T ^ 2组中心测试,如果测试结果等于点的目标。
参数:CItX
95% t-confidence interval for x-coordinates.
95%T-x坐标的置信区间。
参数:CItY
95% t-confidence interval for y-coordinates.
95%T-y坐标的置信区间。
参数:CIbootX
95% bootstrap-confidence intervals for x-coordinates (percentile and BCa, 1499 replicates).
95%的自举置信区间的x坐标(百分位数和BCA,1499)。
参数:CIbootY
95% bootstrap-confidence intervals for y-coordinates (percentile and BCa, 1499 replicates).
95%的自举置信区间为y坐标(百分位数和BCA,1499)。
参见----------See Also----------
getMOA, covMcd, anova.mlm, boot, boot.ci
getMOA,covMcd,anova.mlm,boot,boot.ci
实例----------Examples----------
# assume data from pistol shooting at 25m with 9mm ammo[假设数据从比25m带9mm弹药的手枪射击]
# metric units[公制单位]
xy <- matrix(round(rnorm(100, 0, 5), 2), ncol=2)
res <- groupLocation(xy, dstTarget=25, conversion='m2cm', plots=2,
target='BDS', unit='cm', caliber=0.9)
names(res)
res$ctr
res$distPOA
res$CIbootX
res$CIbootY
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|