How to fit Poission distribution with large mean?
$begingroup$
I have one set of discrete data plotted below. I suspect the data follows Poisson distribution with mean $mu simeq 400$ and standard deviation $sigma simeq sqrt{400} = 20$.
$$ n(k) = frac{mu ^k}{k!} exp (- mu) (mathrm{eq}.1)$$
But how can I confirm this? I tried numerically to calculate (eq.1) but, as you expect, it overflowed.
statistics probability-distributions data-analysis
$endgroup$
add a comment |
$begingroup$
I have one set of discrete data plotted below. I suspect the data follows Poisson distribution with mean $mu simeq 400$ and standard deviation $sigma simeq sqrt{400} = 20$.
$$ n(k) = frac{mu ^k}{k!} exp (- mu) (mathrm{eq}.1)$$
But how can I confirm this? I tried numerically to calculate (eq.1) but, as you expect, it overflowed.
statistics probability-distributions data-analysis
$endgroup$
add a comment |
$begingroup$
I have one set of discrete data plotted below. I suspect the data follows Poisson distribution with mean $mu simeq 400$ and standard deviation $sigma simeq sqrt{400} = 20$.
$$ n(k) = frac{mu ^k}{k!} exp (- mu) (mathrm{eq}.1)$$
But how can I confirm this? I tried numerically to calculate (eq.1) but, as you expect, it overflowed.
statistics probability-distributions data-analysis
$endgroup$
I have one set of discrete data plotted below. I suspect the data follows Poisson distribution with mean $mu simeq 400$ and standard deviation $sigma simeq sqrt{400} = 20$.
$$ n(k) = frac{mu ^k}{k!} exp (- mu) (mathrm{eq}.1)$$
But how can I confirm this? I tried numerically to calculate (eq.1) but, as you expect, it overflowed.
statistics probability-distributions data-analysis
statistics probability-distributions data-analysis
asked Jan 13 at 6:56
ynnynn
616
616
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
Central Limit theorem - a Poisson distribution with a large mean is extremely similar to a discretized normal. With standard deviation $20$, each of those integer points will represent a $z$-score range of $.05$ - from $-0.025$ to $0.025$ at $400$, from $0.025$ to $0.075$ at $401$, and so on. The peak at $400$ should be a probability of about $frac1{20sqrt{2pi}}approx 0.02$.
You're getting numbers that are nearly twice that. Empirically, it looks like your hypothesized model is wrong, and the data is clustered tighter than a Poisson distribution would be.
$endgroup$
$begingroup$
Thank you. It helped me a lot. I have to reconstruct the model though.
$endgroup$
– ynn
Jan 13 at 8:39
$begingroup$
On that, there's a quantitative way to check - you should have enough data there to estimate the variance.
$endgroup$
– jmerry
Jan 13 at 8:55
$begingroup$
I repeated the calculation 500 times but the result didn't change. After some research, it turned out that the model (actually this is Erdos-Renyi random graph model) was not wrong but my estimation "it should always follow Poisson distribution" were incorrect. Now I have what I wanted. Thank you again.
$endgroup$
– ynn
Jan 13 at 10:27
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3071758%2fhow-to-fit-poission-distribution-with-large-mean%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Central Limit theorem - a Poisson distribution with a large mean is extremely similar to a discretized normal. With standard deviation $20$, each of those integer points will represent a $z$-score range of $.05$ - from $-0.025$ to $0.025$ at $400$, from $0.025$ to $0.075$ at $401$, and so on. The peak at $400$ should be a probability of about $frac1{20sqrt{2pi}}approx 0.02$.
You're getting numbers that are nearly twice that. Empirically, it looks like your hypothesized model is wrong, and the data is clustered tighter than a Poisson distribution would be.
$endgroup$
$begingroup$
Thank you. It helped me a lot. I have to reconstruct the model though.
$endgroup$
– ynn
Jan 13 at 8:39
$begingroup$
On that, there's a quantitative way to check - you should have enough data there to estimate the variance.
$endgroup$
– jmerry
Jan 13 at 8:55
$begingroup$
I repeated the calculation 500 times but the result didn't change. After some research, it turned out that the model (actually this is Erdos-Renyi random graph model) was not wrong but my estimation "it should always follow Poisson distribution" were incorrect. Now I have what I wanted. Thank you again.
$endgroup$
– ynn
Jan 13 at 10:27
add a comment |
$begingroup$
Central Limit theorem - a Poisson distribution with a large mean is extremely similar to a discretized normal. With standard deviation $20$, each of those integer points will represent a $z$-score range of $.05$ - from $-0.025$ to $0.025$ at $400$, from $0.025$ to $0.075$ at $401$, and so on. The peak at $400$ should be a probability of about $frac1{20sqrt{2pi}}approx 0.02$.
You're getting numbers that are nearly twice that. Empirically, it looks like your hypothesized model is wrong, and the data is clustered tighter than a Poisson distribution would be.
$endgroup$
$begingroup$
Thank you. It helped me a lot. I have to reconstruct the model though.
$endgroup$
– ynn
Jan 13 at 8:39
$begingroup$
On that, there's a quantitative way to check - you should have enough data there to estimate the variance.
$endgroup$
– jmerry
Jan 13 at 8:55
$begingroup$
I repeated the calculation 500 times but the result didn't change. After some research, it turned out that the model (actually this is Erdos-Renyi random graph model) was not wrong but my estimation "it should always follow Poisson distribution" were incorrect. Now I have what I wanted. Thank you again.
$endgroup$
– ynn
Jan 13 at 10:27
add a comment |
$begingroup$
Central Limit theorem - a Poisson distribution with a large mean is extremely similar to a discretized normal. With standard deviation $20$, each of those integer points will represent a $z$-score range of $.05$ - from $-0.025$ to $0.025$ at $400$, from $0.025$ to $0.075$ at $401$, and so on. The peak at $400$ should be a probability of about $frac1{20sqrt{2pi}}approx 0.02$.
You're getting numbers that are nearly twice that. Empirically, it looks like your hypothesized model is wrong, and the data is clustered tighter than a Poisson distribution would be.
$endgroup$
Central Limit theorem - a Poisson distribution with a large mean is extremely similar to a discretized normal. With standard deviation $20$, each of those integer points will represent a $z$-score range of $.05$ - from $-0.025$ to $0.025$ at $400$, from $0.025$ to $0.075$ at $401$, and so on. The peak at $400$ should be a probability of about $frac1{20sqrt{2pi}}approx 0.02$.
You're getting numbers that are nearly twice that. Empirically, it looks like your hypothesized model is wrong, and the data is clustered tighter than a Poisson distribution would be.
answered Jan 13 at 7:06


jmerryjmerry
8,3781022
8,3781022
$begingroup$
Thank you. It helped me a lot. I have to reconstruct the model though.
$endgroup$
– ynn
Jan 13 at 8:39
$begingroup$
On that, there's a quantitative way to check - you should have enough data there to estimate the variance.
$endgroup$
– jmerry
Jan 13 at 8:55
$begingroup$
I repeated the calculation 500 times but the result didn't change. After some research, it turned out that the model (actually this is Erdos-Renyi random graph model) was not wrong but my estimation "it should always follow Poisson distribution" were incorrect. Now I have what I wanted. Thank you again.
$endgroup$
– ynn
Jan 13 at 10:27
add a comment |
$begingroup$
Thank you. It helped me a lot. I have to reconstruct the model though.
$endgroup$
– ynn
Jan 13 at 8:39
$begingroup$
On that, there's a quantitative way to check - you should have enough data there to estimate the variance.
$endgroup$
– jmerry
Jan 13 at 8:55
$begingroup$
I repeated the calculation 500 times but the result didn't change. After some research, it turned out that the model (actually this is Erdos-Renyi random graph model) was not wrong but my estimation "it should always follow Poisson distribution" were incorrect. Now I have what I wanted. Thank you again.
$endgroup$
– ynn
Jan 13 at 10:27
$begingroup$
Thank you. It helped me a lot. I have to reconstruct the model though.
$endgroup$
– ynn
Jan 13 at 8:39
$begingroup$
Thank you. It helped me a lot. I have to reconstruct the model though.
$endgroup$
– ynn
Jan 13 at 8:39
$begingroup$
On that, there's a quantitative way to check - you should have enough data there to estimate the variance.
$endgroup$
– jmerry
Jan 13 at 8:55
$begingroup$
On that, there's a quantitative way to check - you should have enough data there to estimate the variance.
$endgroup$
– jmerry
Jan 13 at 8:55
$begingroup$
I repeated the calculation 500 times but the result didn't change. After some research, it turned out that the model (actually this is Erdos-Renyi random graph model) was not wrong but my estimation "it should always follow Poisson distribution" were incorrect. Now I have what I wanted. Thank you again.
$endgroup$
– ynn
Jan 13 at 10:27
$begingroup$
I repeated the calculation 500 times but the result didn't change. After some research, it turned out that the model (actually this is Erdos-Renyi random graph model) was not wrong but my estimation "it should always follow Poisson distribution" were incorrect. Now I have what I wanted. Thank you again.
$endgroup$
– ynn
Jan 13 at 10:27
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3071758%2fhow-to-fit-poission-distribution-with-large-mean%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown