What is ogive? Use of ogive
$begingroup$
What is ogive? I don't know what is ogive.in my book of mathematics it came but there is no explanation abiut it.
statistics terminology
$endgroup$
add a comment |
$begingroup$
What is ogive? I don't know what is ogive.in my book of mathematics it came but there is no explanation abiut it.
statistics terminology
$endgroup$
$begingroup$
For reference: en.wikipedia.org/wiki/Ogive_(statistics) (I had not heard about this before).
$endgroup$
– Arthur
Dec 13 '18 at 19:34
add a comment |
$begingroup$
What is ogive? I don't know what is ogive.in my book of mathematics it came but there is no explanation abiut it.
statistics terminology
$endgroup$
What is ogive? I don't know what is ogive.in my book of mathematics it came but there is no explanation abiut it.
statistics terminology
statistics terminology
edited Dec 13 '18 at 22:17
Tianlalu
3,08421138
3,08421138
asked Dec 13 '18 at 19:33
Aansa RasoolAansa Rasool
6
6
$begingroup$
For reference: en.wikipedia.org/wiki/Ogive_(statistics) (I had not heard about this before).
$endgroup$
– Arthur
Dec 13 '18 at 19:34
add a comment |
$begingroup$
For reference: en.wikipedia.org/wiki/Ogive_(statistics) (I had not heard about this before).
$endgroup$
– Arthur
Dec 13 '18 at 19:34
$begingroup$
For reference: en.wikipedia.org/wiki/Ogive_(statistics) (I had not heard about this before).
$endgroup$
– Arthur
Dec 13 '18 at 19:34
$begingroup$
For reference: en.wikipedia.org/wiki/Ogive_(statistics) (I had not heard about this before).
$endgroup$
– Arthur
Dec 13 '18 at 19:34
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
If you have a sufficiently large random sample from a (continuous) population, it is often useful to try to estimate the PDF (density) function or its CDF. Before the computer age PDFs were often approximated by histograms and CDFs by ogives.
Typically, both kinds
of plots are based on grouped or binned data: frequency counts of individual intervals (or bins) for histograms and cumulative frequency counts for ogives.
Nowadays even for very large datasets, computers make it possible to make plots that more carefully take into account the individual observations. So kernel density estimators (KDEs) sometimes replace histograms and empirical cumulative distribution functions
(ECDFs) usually replace ogives.
[An ECDF is a step function that uses sorted data, jumping by $1/n$ at each value; and by $k/n$ at a particular value if data are rounded so that $k$
observations are tied at that value. In some fields of application, the term 'ogive' is still used--instead of 'ECDF' -- even when data are not sorted into intervals.
A KDE splices curves together to make a 'spline' that approximates the density function.)
Below are the KDE and ECDF of a random sample of size $n = 5000$ from the distribution
$mathsf{Norm}(mu = 100,, sigma=15).$ For reference, the exact density function
and CDF are plotted (dotted red). An ogive using the same bins as the histogram would be a broken line very closely approximating
the ECDF. In an actual application, the exact PDF and CDF would not be known.
Note: The figure was make using R statistical software. The code is provided below.
set.seed(1218); n = 5000; mu = 100; sg = 15
x = rnorm(n, mu, sg)
par(mfrow=c(1,2)) # enables 2 panels per figure
HDRH = "Histogram, KDE, and Density of Sample from NORM(100,15)"
hist(x, prob=T, col="skyblue2", ylim=c(0,.03), main = HDRH)
lines(density(x), lwd=2, col="blue")
curve(dnorm(x, mu, sg), add=T, lwd=2, col="red", lty="dotted")
HDRC = "ECDF and CDF of sample from NORM(100,15)"
plot(ecdf(x), col="blue", main = HDRC)
curve(pnorm(x, mu, sg), add=T, lwd=2, col="red", lty="dotted")
par(mfrow=c(1,1))
In order to show more detail, at the loss of some precision of estimation, we
show the corresponding figure for the first 1000 of the 5000 normal values
sampled above. Some information is lost in binning, so histograms do not have the
same accuracy as ECDFs.
Finally, we show the relatively poor estimates from only the first $50$ observations. Here 'rugs' of tick marks below the horizontal axes of the histogram and the ECDF show
exact values of the $50$ observations. Also, the the ogive (9-segment broken cyan line), based on
the histogram bins, is superimposed on the ECDF plot.
Coordinates for the ogive are shown in the table below:
Endpt x y
0 50 0.00
1 60 0.02
2 70 0.04
3 80 0.10
4 90 0.28
5 100 0.48
6 110 0.80
7 120 0.90
8 130 0.98
9 140 1.00
$endgroup$
add a comment |
$begingroup$
https://en.wikipedia.org/wiki/Ogive_(statistics)
In statistics, an ogive is a free-hand graph showing the curve of a cumulative distribution function.[1] The points plotted are the upper class limit and the corresponding cumulative frequency.[2] (which, for the normal distribution, resembles one side of an Arabesque or ogival arch). The term can also be used to refer to the empirical cumulative distribution function.
$endgroup$
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%2f3038485%2fwhat-is-ogive-use-of-ogive%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
If you have a sufficiently large random sample from a (continuous) population, it is often useful to try to estimate the PDF (density) function or its CDF. Before the computer age PDFs were often approximated by histograms and CDFs by ogives.
Typically, both kinds
of plots are based on grouped or binned data: frequency counts of individual intervals (or bins) for histograms and cumulative frequency counts for ogives.
Nowadays even for very large datasets, computers make it possible to make plots that more carefully take into account the individual observations. So kernel density estimators (KDEs) sometimes replace histograms and empirical cumulative distribution functions
(ECDFs) usually replace ogives.
[An ECDF is a step function that uses sorted data, jumping by $1/n$ at each value; and by $k/n$ at a particular value if data are rounded so that $k$
observations are tied at that value. In some fields of application, the term 'ogive' is still used--instead of 'ECDF' -- even when data are not sorted into intervals.
A KDE splices curves together to make a 'spline' that approximates the density function.)
Below are the KDE and ECDF of a random sample of size $n = 5000$ from the distribution
$mathsf{Norm}(mu = 100,, sigma=15).$ For reference, the exact density function
and CDF are plotted (dotted red). An ogive using the same bins as the histogram would be a broken line very closely approximating
the ECDF. In an actual application, the exact PDF and CDF would not be known.
Note: The figure was make using R statistical software. The code is provided below.
set.seed(1218); n = 5000; mu = 100; sg = 15
x = rnorm(n, mu, sg)
par(mfrow=c(1,2)) # enables 2 panels per figure
HDRH = "Histogram, KDE, and Density of Sample from NORM(100,15)"
hist(x, prob=T, col="skyblue2", ylim=c(0,.03), main = HDRH)
lines(density(x), lwd=2, col="blue")
curve(dnorm(x, mu, sg), add=T, lwd=2, col="red", lty="dotted")
HDRC = "ECDF and CDF of sample from NORM(100,15)"
plot(ecdf(x), col="blue", main = HDRC)
curve(pnorm(x, mu, sg), add=T, lwd=2, col="red", lty="dotted")
par(mfrow=c(1,1))
In order to show more detail, at the loss of some precision of estimation, we
show the corresponding figure for the first 1000 of the 5000 normal values
sampled above. Some information is lost in binning, so histograms do not have the
same accuracy as ECDFs.
Finally, we show the relatively poor estimates from only the first $50$ observations. Here 'rugs' of tick marks below the horizontal axes of the histogram and the ECDF show
exact values of the $50$ observations. Also, the the ogive (9-segment broken cyan line), based on
the histogram bins, is superimposed on the ECDF plot.
Coordinates for the ogive are shown in the table below:
Endpt x y
0 50 0.00
1 60 0.02
2 70 0.04
3 80 0.10
4 90 0.28
5 100 0.48
6 110 0.80
7 120 0.90
8 130 0.98
9 140 1.00
$endgroup$
add a comment |
$begingroup$
If you have a sufficiently large random sample from a (continuous) population, it is often useful to try to estimate the PDF (density) function or its CDF. Before the computer age PDFs were often approximated by histograms and CDFs by ogives.
Typically, both kinds
of plots are based on grouped or binned data: frequency counts of individual intervals (or bins) for histograms and cumulative frequency counts for ogives.
Nowadays even for very large datasets, computers make it possible to make plots that more carefully take into account the individual observations. So kernel density estimators (KDEs) sometimes replace histograms and empirical cumulative distribution functions
(ECDFs) usually replace ogives.
[An ECDF is a step function that uses sorted data, jumping by $1/n$ at each value; and by $k/n$ at a particular value if data are rounded so that $k$
observations are tied at that value. In some fields of application, the term 'ogive' is still used--instead of 'ECDF' -- even when data are not sorted into intervals.
A KDE splices curves together to make a 'spline' that approximates the density function.)
Below are the KDE and ECDF of a random sample of size $n = 5000$ from the distribution
$mathsf{Norm}(mu = 100,, sigma=15).$ For reference, the exact density function
and CDF are plotted (dotted red). An ogive using the same bins as the histogram would be a broken line very closely approximating
the ECDF. In an actual application, the exact PDF and CDF would not be known.
Note: The figure was make using R statistical software. The code is provided below.
set.seed(1218); n = 5000; mu = 100; sg = 15
x = rnorm(n, mu, sg)
par(mfrow=c(1,2)) # enables 2 panels per figure
HDRH = "Histogram, KDE, and Density of Sample from NORM(100,15)"
hist(x, prob=T, col="skyblue2", ylim=c(0,.03), main = HDRH)
lines(density(x), lwd=2, col="blue")
curve(dnorm(x, mu, sg), add=T, lwd=2, col="red", lty="dotted")
HDRC = "ECDF and CDF of sample from NORM(100,15)"
plot(ecdf(x), col="blue", main = HDRC)
curve(pnorm(x, mu, sg), add=T, lwd=2, col="red", lty="dotted")
par(mfrow=c(1,1))
In order to show more detail, at the loss of some precision of estimation, we
show the corresponding figure for the first 1000 of the 5000 normal values
sampled above. Some information is lost in binning, so histograms do not have the
same accuracy as ECDFs.
Finally, we show the relatively poor estimates from only the first $50$ observations. Here 'rugs' of tick marks below the horizontal axes of the histogram and the ECDF show
exact values of the $50$ observations. Also, the the ogive (9-segment broken cyan line), based on
the histogram bins, is superimposed on the ECDF plot.
Coordinates for the ogive are shown in the table below:
Endpt x y
0 50 0.00
1 60 0.02
2 70 0.04
3 80 0.10
4 90 0.28
5 100 0.48
6 110 0.80
7 120 0.90
8 130 0.98
9 140 1.00
$endgroup$
add a comment |
$begingroup$
If you have a sufficiently large random sample from a (continuous) population, it is often useful to try to estimate the PDF (density) function or its CDF. Before the computer age PDFs were often approximated by histograms and CDFs by ogives.
Typically, both kinds
of plots are based on grouped or binned data: frequency counts of individual intervals (or bins) for histograms and cumulative frequency counts for ogives.
Nowadays even for very large datasets, computers make it possible to make plots that more carefully take into account the individual observations. So kernel density estimators (KDEs) sometimes replace histograms and empirical cumulative distribution functions
(ECDFs) usually replace ogives.
[An ECDF is a step function that uses sorted data, jumping by $1/n$ at each value; and by $k/n$ at a particular value if data are rounded so that $k$
observations are tied at that value. In some fields of application, the term 'ogive' is still used--instead of 'ECDF' -- even when data are not sorted into intervals.
A KDE splices curves together to make a 'spline' that approximates the density function.)
Below are the KDE and ECDF of a random sample of size $n = 5000$ from the distribution
$mathsf{Norm}(mu = 100,, sigma=15).$ For reference, the exact density function
and CDF are plotted (dotted red). An ogive using the same bins as the histogram would be a broken line very closely approximating
the ECDF. In an actual application, the exact PDF and CDF would not be known.
Note: The figure was make using R statistical software. The code is provided below.
set.seed(1218); n = 5000; mu = 100; sg = 15
x = rnorm(n, mu, sg)
par(mfrow=c(1,2)) # enables 2 panels per figure
HDRH = "Histogram, KDE, and Density of Sample from NORM(100,15)"
hist(x, prob=T, col="skyblue2", ylim=c(0,.03), main = HDRH)
lines(density(x), lwd=2, col="blue")
curve(dnorm(x, mu, sg), add=T, lwd=2, col="red", lty="dotted")
HDRC = "ECDF and CDF of sample from NORM(100,15)"
plot(ecdf(x), col="blue", main = HDRC)
curve(pnorm(x, mu, sg), add=T, lwd=2, col="red", lty="dotted")
par(mfrow=c(1,1))
In order to show more detail, at the loss of some precision of estimation, we
show the corresponding figure for the first 1000 of the 5000 normal values
sampled above. Some information is lost in binning, so histograms do not have the
same accuracy as ECDFs.
Finally, we show the relatively poor estimates from only the first $50$ observations. Here 'rugs' of tick marks below the horizontal axes of the histogram and the ECDF show
exact values of the $50$ observations. Also, the the ogive (9-segment broken cyan line), based on
the histogram bins, is superimposed on the ECDF plot.
Coordinates for the ogive are shown in the table below:
Endpt x y
0 50 0.00
1 60 0.02
2 70 0.04
3 80 0.10
4 90 0.28
5 100 0.48
6 110 0.80
7 120 0.90
8 130 0.98
9 140 1.00
$endgroup$
If you have a sufficiently large random sample from a (continuous) population, it is often useful to try to estimate the PDF (density) function or its CDF. Before the computer age PDFs were often approximated by histograms and CDFs by ogives.
Typically, both kinds
of plots are based on grouped or binned data: frequency counts of individual intervals (or bins) for histograms and cumulative frequency counts for ogives.
Nowadays even for very large datasets, computers make it possible to make plots that more carefully take into account the individual observations. So kernel density estimators (KDEs) sometimes replace histograms and empirical cumulative distribution functions
(ECDFs) usually replace ogives.
[An ECDF is a step function that uses sorted data, jumping by $1/n$ at each value; and by $k/n$ at a particular value if data are rounded so that $k$
observations are tied at that value. In some fields of application, the term 'ogive' is still used--instead of 'ECDF' -- even when data are not sorted into intervals.
A KDE splices curves together to make a 'spline' that approximates the density function.)
Below are the KDE and ECDF of a random sample of size $n = 5000$ from the distribution
$mathsf{Norm}(mu = 100,, sigma=15).$ For reference, the exact density function
and CDF are plotted (dotted red). An ogive using the same bins as the histogram would be a broken line very closely approximating
the ECDF. In an actual application, the exact PDF and CDF would not be known.
Note: The figure was make using R statistical software. The code is provided below.
set.seed(1218); n = 5000; mu = 100; sg = 15
x = rnorm(n, mu, sg)
par(mfrow=c(1,2)) # enables 2 panels per figure
HDRH = "Histogram, KDE, and Density of Sample from NORM(100,15)"
hist(x, prob=T, col="skyblue2", ylim=c(0,.03), main = HDRH)
lines(density(x), lwd=2, col="blue")
curve(dnorm(x, mu, sg), add=T, lwd=2, col="red", lty="dotted")
HDRC = "ECDF and CDF of sample from NORM(100,15)"
plot(ecdf(x), col="blue", main = HDRC)
curve(pnorm(x, mu, sg), add=T, lwd=2, col="red", lty="dotted")
par(mfrow=c(1,1))
In order to show more detail, at the loss of some precision of estimation, we
show the corresponding figure for the first 1000 of the 5000 normal values
sampled above. Some information is lost in binning, so histograms do not have the
same accuracy as ECDFs.
Finally, we show the relatively poor estimates from only the first $50$ observations. Here 'rugs' of tick marks below the horizontal axes of the histogram and the ECDF show
exact values of the $50$ observations. Also, the the ogive (9-segment broken cyan line), based on
the histogram bins, is superimposed on the ECDF plot.
Coordinates for the ogive are shown in the table below:
Endpt x y
0 50 0.00
1 60 0.02
2 70 0.04
3 80 0.10
4 90 0.28
5 100 0.48
6 110 0.80
7 120 0.90
8 130 0.98
9 140 1.00
edited Dec 13 '18 at 23:01
answered Dec 13 '18 at 21:02
BruceETBruceET
35.8k71440
35.8k71440
add a comment |
add a comment |
$begingroup$
https://en.wikipedia.org/wiki/Ogive_(statistics)
In statistics, an ogive is a free-hand graph showing the curve of a cumulative distribution function.[1] The points plotted are the upper class limit and the corresponding cumulative frequency.[2] (which, for the normal distribution, resembles one side of an Arabesque or ogival arch). The term can also be used to refer to the empirical cumulative distribution function.
$endgroup$
add a comment |
$begingroup$
https://en.wikipedia.org/wiki/Ogive_(statistics)
In statistics, an ogive is a free-hand graph showing the curve of a cumulative distribution function.[1] The points plotted are the upper class limit and the corresponding cumulative frequency.[2] (which, for the normal distribution, resembles one side of an Arabesque or ogival arch). The term can also be used to refer to the empirical cumulative distribution function.
$endgroup$
add a comment |
$begingroup$
https://en.wikipedia.org/wiki/Ogive_(statistics)
In statistics, an ogive is a free-hand graph showing the curve of a cumulative distribution function.[1] The points plotted are the upper class limit and the corresponding cumulative frequency.[2] (which, for the normal distribution, resembles one side of an Arabesque or ogival arch). The term can also be used to refer to the empirical cumulative distribution function.
$endgroup$
https://en.wikipedia.org/wiki/Ogive_(statistics)
In statistics, an ogive is a free-hand graph showing the curve of a cumulative distribution function.[1] The points plotted are the upper class limit and the corresponding cumulative frequency.[2] (which, for the normal distribution, resembles one side of an Arabesque or ogival arch). The term can also be used to refer to the empirical cumulative distribution function.
answered Dec 13 '18 at 19:35
Chris CulterChris Culter
21.4k43887
21.4k43887
add a comment |
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%2f3038485%2fwhat-is-ogive-use-of-ogive%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
$begingroup$
For reference: en.wikipedia.org/wiki/Ogive_(statistics) (I had not heard about this before).
$endgroup$
– Arthur
Dec 13 '18 at 19:34