R: How to compare the quality of estimators (method of moments vs max likelihood)
It's my first question in here, so please do not be very strict on me.
I need to compare the quality of estimators. I have the following data and codes. What I need to understand is whether the only way to understand the better estimation is to see graphics, or whether there is a more precise way to do it. Thanks in advance!
WT<-c(75, 265, 225, 402, 35, 105, 411, 346, 159, 229, 62, 256, 431, 177, 56, 144, 354, 178, 386, 294)
hist(WT,breaks=10,freq=F)
h<-hist(WT,breaks=quantile(WT,seq(0,1,0.1)),main="WT distribution")
cumfreq2<-cumsum(h$counts)/length(WT)
plot(h$breaks,c(0,cumfreq2),"l",main="Distribution
function",xlab="WT",ylab="Probabilite")+
lines(h$breaks,punif(h$breaks,min(WT),max(WT)),col="red")
#Estimate the parameter of this law by the method of moments.
u<-mean(WT)
v<-sqrt(sum((WT-u)^2)/length(WT)) # ce n'est pas le sqrt(var?) sqrt(var(WT))
a<-u-sqrt(3)*v #pourquoi 3
b<-u+sqrt(3)*v
#Estimate this parameter by the maximum likelihood method.
teta2<-max(WT)
#Compare the quality of these estimators by cumulative frequency graph
plot(h$breaks,c(0,cumfreq2),"l",main="Distribution
function",xlab="WT",ylab="Probabilite")+
lines(h$breaks,punif(h$breaks,min=a,max=b),col="red")
uni<-function(x){
if (x<=0){
y<-0
}else if (x<teta2) {
y<-x/teta2
}else {
y<-1
}
return(y)
}
lines(h$breaks,uni(h$breaks),col="blue")
r statistics
add a comment |
It's my first question in here, so please do not be very strict on me.
I need to compare the quality of estimators. I have the following data and codes. What I need to understand is whether the only way to understand the better estimation is to see graphics, or whether there is a more precise way to do it. Thanks in advance!
WT<-c(75, 265, 225, 402, 35, 105, 411, 346, 159, 229, 62, 256, 431, 177, 56, 144, 354, 178, 386, 294)
hist(WT,breaks=10,freq=F)
h<-hist(WT,breaks=quantile(WT,seq(0,1,0.1)),main="WT distribution")
cumfreq2<-cumsum(h$counts)/length(WT)
plot(h$breaks,c(0,cumfreq2),"l",main="Distribution
function",xlab="WT",ylab="Probabilite")+
lines(h$breaks,punif(h$breaks,min(WT),max(WT)),col="red")
#Estimate the parameter of this law by the method of moments.
u<-mean(WT)
v<-sqrt(sum((WT-u)^2)/length(WT)) # ce n'est pas le sqrt(var?) sqrt(var(WT))
a<-u-sqrt(3)*v #pourquoi 3
b<-u+sqrt(3)*v
#Estimate this parameter by the maximum likelihood method.
teta2<-max(WT)
#Compare the quality of these estimators by cumulative frequency graph
plot(h$breaks,c(0,cumfreq2),"l",main="Distribution
function",xlab="WT",ylab="Probabilite")+
lines(h$breaks,punif(h$breaks,min=a,max=b),col="red")
uni<-function(x){
if (x<=0){
y<-0
}else if (x<teta2) {
y<-x/teta2
}else {
y<-1
}
return(y)
}
lines(h$breaks,uni(h$breaks),col="blue")
r statistics
What is your metric - rmse? can you compare based on that? (I am uncertain - just asking)
– javadba
Nov 21 '18 at 23:41
Dear @javadba , frankly speaking I do not understand your question, what metric you want?
– Azat Aleksanyan
Nov 22 '18 at 8:48
add a comment |
It's my first question in here, so please do not be very strict on me.
I need to compare the quality of estimators. I have the following data and codes. What I need to understand is whether the only way to understand the better estimation is to see graphics, or whether there is a more precise way to do it. Thanks in advance!
WT<-c(75, 265, 225, 402, 35, 105, 411, 346, 159, 229, 62, 256, 431, 177, 56, 144, 354, 178, 386, 294)
hist(WT,breaks=10,freq=F)
h<-hist(WT,breaks=quantile(WT,seq(0,1,0.1)),main="WT distribution")
cumfreq2<-cumsum(h$counts)/length(WT)
plot(h$breaks,c(0,cumfreq2),"l",main="Distribution
function",xlab="WT",ylab="Probabilite")+
lines(h$breaks,punif(h$breaks,min(WT),max(WT)),col="red")
#Estimate the parameter of this law by the method of moments.
u<-mean(WT)
v<-sqrt(sum((WT-u)^2)/length(WT)) # ce n'est pas le sqrt(var?) sqrt(var(WT))
a<-u-sqrt(3)*v #pourquoi 3
b<-u+sqrt(3)*v
#Estimate this parameter by the maximum likelihood method.
teta2<-max(WT)
#Compare the quality of these estimators by cumulative frequency graph
plot(h$breaks,c(0,cumfreq2),"l",main="Distribution
function",xlab="WT",ylab="Probabilite")+
lines(h$breaks,punif(h$breaks,min=a,max=b),col="red")
uni<-function(x){
if (x<=0){
y<-0
}else if (x<teta2) {
y<-x/teta2
}else {
y<-1
}
return(y)
}
lines(h$breaks,uni(h$breaks),col="blue")
r statistics
It's my first question in here, so please do not be very strict on me.
I need to compare the quality of estimators. I have the following data and codes. What I need to understand is whether the only way to understand the better estimation is to see graphics, or whether there is a more precise way to do it. Thanks in advance!
WT<-c(75, 265, 225, 402, 35, 105, 411, 346, 159, 229, 62, 256, 431, 177, 56, 144, 354, 178, 386, 294)
hist(WT,breaks=10,freq=F)
h<-hist(WT,breaks=quantile(WT,seq(0,1,0.1)),main="WT distribution")
cumfreq2<-cumsum(h$counts)/length(WT)
plot(h$breaks,c(0,cumfreq2),"l",main="Distribution
function",xlab="WT",ylab="Probabilite")+
lines(h$breaks,punif(h$breaks,min(WT),max(WT)),col="red")
#Estimate the parameter of this law by the method of moments.
u<-mean(WT)
v<-sqrt(sum((WT-u)^2)/length(WT)) # ce n'est pas le sqrt(var?) sqrt(var(WT))
a<-u-sqrt(3)*v #pourquoi 3
b<-u+sqrt(3)*v
#Estimate this parameter by the maximum likelihood method.
teta2<-max(WT)
#Compare the quality of these estimators by cumulative frequency graph
plot(h$breaks,c(0,cumfreq2),"l",main="Distribution
function",xlab="WT",ylab="Probabilite")+
lines(h$breaks,punif(h$breaks,min=a,max=b),col="red")
uni<-function(x){
if (x<=0){
y<-0
}else if (x<teta2) {
y<-x/teta2
}else {
y<-1
}
return(y)
}
lines(h$breaks,uni(h$breaks),col="blue")
r statistics
r statistics
edited Nov 22 '18 at 0:29
Christopher Bradshaw
83011129
83011129
asked Nov 21 '18 at 23:25
Azat AleksanyanAzat Aleksanyan
11
11
What is your metric - rmse? can you compare based on that? (I am uncertain - just asking)
– javadba
Nov 21 '18 at 23:41
Dear @javadba , frankly speaking I do not understand your question, what metric you want?
– Azat Aleksanyan
Nov 22 '18 at 8:48
add a comment |
What is your metric - rmse? can you compare based on that? (I am uncertain - just asking)
– javadba
Nov 21 '18 at 23:41
Dear @javadba , frankly speaking I do not understand your question, what metric you want?
– Azat Aleksanyan
Nov 22 '18 at 8:48
What is your metric - rmse? can you compare based on that? (I am uncertain - just asking)
– javadba
Nov 21 '18 at 23:41
What is your metric - rmse? can you compare based on that? (I am uncertain - just asking)
– javadba
Nov 21 '18 at 23:41
Dear @javadba , frankly speaking I do not understand your question, what metric you want?
– Azat Aleksanyan
Nov 22 '18 at 8:48
Dear @javadba , frankly speaking I do not understand your question, what metric you want?
– Azat Aleksanyan
Nov 22 '18 at 8:48
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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
},
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%2fstackoverflow.com%2fquestions%2f53421851%2fr-how-to-compare-the-quality-of-estimators-method-of-moments-vs-max-likelihood%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- 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.
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%2fstackoverflow.com%2fquestions%2f53421851%2fr-how-to-compare-the-quality-of-estimators-method-of-moments-vs-max-likelihood%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
What is your metric - rmse? can you compare based on that? (I am uncertain - just asking)
– javadba
Nov 21 '18 at 23:41
Dear @javadba , frankly speaking I do not understand your question, what metric you want?
– Azat Aleksanyan
Nov 22 '18 at 8:48