getHitProb(xy, r=1, unit = 'unit', dstTarget = 100, conversion = 'm2cm', accuracy = FALSE, type = 'CorrNormal', doRob = FALSE)
"getHitProb"(xy, r=1, unit = 'unit', dstTarget = 100, conversion = 'm2cm', accuracy = FALSE, type = 'CorrNormal', doRob = FALSE)
"getHitProb"(xy, r=1, unit = 'unit', dstTarget = 100, conversion = 'm2cm', accuracy = FALSE, type = 'CorrNormal', doRob = FALSE)
X
, Y
or Point.X
, Point.Y
(optionally Z
or Point.Z
).r
. Default 'unit'
indicates that the measurement unit for (x,y)-coordinates given in conversion
. Possible values are 'unit', 'm', 'cm', 'mm', 'yd', 'ft', 'in', 'deg', 'MOA', 'SMOA', 'rad', 'mrad', 'mil'
.getMOA
.getMOA
.'CorrNormal', 'GrubbsPearson', 'GrubbsPatnaik', 'GrubbsLiu', 'Rayleigh'
.accuracy=FALSE
.r
and more than one type
, a matrix.
r
.For accuracy=FALSE
(default), the estimated hit probability does not take into account accuracy, i.e., any systematic location bias. The data is then first centered on the empirical group mean, assumed to coincide with the point of aim. Set accuracy=TRUE
to incorporate systematic accuracy bias such that the point of aim is in the origin 0, possibly offset from the true group center.
CorrNormal
: For accuracy=FALSE
and two-dimensional data, this estimate is based on the quantile function of the correlated bivariate normal distribution re-written in polar coordinates (radius and angle) (see Hoyt
). For accuracy=TRUE
or three-dimensional data, it is based on the (offset) circle/sphere probabilities for the correlated multivariate normal distribution (DiDonato & Jarnagin, 1961; DiDonato, 1981, see pmvnEll
).
GrubbsPearson
: The Grubbs-Pearson estimate (Grubbs, 1964) is based on the Pearson three-moment central chi^2-approximation of the true cumulative distribution function of radial error. The eigenvalues of the covariance matrix of shot-coordinates are used as variance estimates since they are the variances of the principal components (the PCA-rotated = decorrelated data).
GrubbsPatnaik
: The Grubbs-Patnaik estimate (Grubbs, 1964) differs from the Grubbs-Pearson estimate insofar as it is based on the Patnaik two-moment central chi^2-approximation of the true cumulative distribution function of radial error.
GrubbsLiu
: The Grubbs-Liu estimate was not proposed by Grubbs but follows the same principle as his original estimates. It differs from them insofar as it is based on the Liu-Tang-Zhang four-moment non-central chi^2-approximation of the true cumulative distribution function of radial error. For accuracy=FALSE
, it is identical to GrubbsPearson
.
Rayleigh
: For accuracy=FALSE
and two-dimensional data, this estimate uses the Rayleigh distribution (see getRayParam
). It is valid for uncorrelated bivariate normal coordinates with equal variances. This estimate is available for all probability levels. For accuracy=FALSE
and three-dimensional data, the Maxwell-Boltzmann distribution is used (see getRayParam
). For accuracy=TRUE
and two-dimensional data, the estimate uses the Rice distribution (see getRiceParam
). For accuracy=TRUE
and three-dimensional data, it is based on the offset sphere probabilities for the multivariate normal distribution set to have equal variances (see qmvnEll
).
If package shiny
is installed, an interactive web app for this functionality can be run with runGUI("hitprob")
.
DiDonato, A. R., & Jarnagin, M. P. (1961). Integration of the general bivariate Gaussian distribution over an offset circle. Mathematics of Computation, 15 (76), 375-382.
Grubbs, F. E. (1964). Approximate circular and noncircular offset probabilities of hitting. Operations Research, 12(1), 51-62.
Liu, H., Tang, Y., & Zhang, H. H. (2009). A new chi-square approximation to the distribution of non-negative definite quadratic forms in non-central normal variables. Computational Statistics & Data Analysis, 53(4), 853-856.
Singh, H. P. 1992. Estimation of Circular Probable Error. The Indian Journal of Statistics, Series B 5(3), 289-305.
Rayleigh
,
Maxwell
,
Hoyt
,
mvnEll
,
getHoytParam
,
getRayParam
,
getCEP
,
getConfEll
,
covMcd
# coordinates given by a suitable data frame
# estimated fraction of shots within a circle with radius
# 1 and 1.5 MOA.
getHitProb(DFscar17, r=c(1, 1.5), unit='MOA', accuracy=FALSE,
dstTarget=100, conversion='yd2in',
type=c('CorrNormal', 'GrubbsPatnaik'))
# coordinates given by a matrix
## Not run:
# xy <- matrix(round(rnorm(100, 0, 5), 2), ncol=2)
# getHitProb(xy, r=c(2, 2.5), unit='MOA', accuracy=FALSE,
# dstTarget=100, conversion='yd2in',
# type=c('CorrNormal', 'GrubbsPatnaik'))
# ## End(Not run)
Run the code above in your browser using DataLab