Uma distribuição Skellam descreve a diferença entre duas variáveis que possuem distribuições de Poisson. Existe uma distribuição semelhante que descreva a diferença entre variáveis que seguem distribuições binomiais negativas?
Meus dados são produzidos por um processo de Poisson, mas incluem uma quantidade razoável de ruído, levando a uma dispersão excessiva na distribuição. Assim, modelar os dados com uma distribuição binomial negativa (NB) funciona bem. Se eu quiser modelar a diferença entre dois desses conjuntos de dados NB, quais são minhas opções? Se ajudar, assuma meios e variações semelhantes para os dois conjuntos.
distributions
modeling
poisson-distribution
negative-binomial
skellam
chrisamiller
fonte
fonte
Respostas:
Não sei o nome dessa distribuição, mas você pode derivá-la da lei da probabilidade total. Suponha que tenham distribuições binomiais negativas com parâmetros ( r 1 , p 1 ) e ( r 2 , p 2 ) , respectivamente. Estou usando a parametrização em que X , Y representam o número de sucessos antes das falhas r 1 'e er 2 ', respectivamente. Então,X, Y ( r1, p1) ( r2, p2) X, Y r1 r2
Nós sabemos
e
assim
Isso não é bonito (caramba!). A única simplificação que vejo imediatamente é
which is still pretty ugly. I'm not sure if this is helpful but this can also be re-written as
I'm not sure if there is a simplified expression for this sum but it could be approximated numerically if you only need it to calculatep -values
I verified with simulation that the above calculation is correct. Here is a crude R function to calculate this mass function and carry out a few simulations
I've found the sum converges very quickly for all of the values I tried, so setting UB higher than 10 or so is not necessary. Note that R's built in rnbinom function parameterizes the negative binomial in terms of the number of failures before ther 'th success, in which case you'd need to replace all of the p1,p2 's
in the above formulas with 1−p1,1−p2 for compatibility.
fonte
Yes. skewed generalized discrete Laplace distribution is the difference of two negative binomial distributed random variables. For more clarifications refer the online available article "skewed generalized discrete Laplace distribution" by seetha Lekshmi.V. and simi sebastian
fonte