Extract dispersion parameter from quasibinomial glm and add to statistics in texreg table
up vote
0
down vote
favorite
I used glm with family=quasibinomial to model a response variables with overdispersion. I now am making model comparison tables in texreg comparing different models. I want to include the dispersion parameter in the statistics at the bottom of the table.
Using summary() prints out the dispersion/scale parameter, so I know it is there, but I was hoping someone could help me get it into the texreg table?
The include.dispersion=TRUE doesn't seem to work, and in extract.glm the dispersion parameter doesn't show up. I am open to other table making packages or any other way to solve the problem.
reproduced.data<- structure(list(number_of_minutes = c(120L, 1L, 67L, 102L,
120L,120L, 120L, 120L, 55L, 120L), approach = c(60L, 1L, 15L, 29L,66L, 66L,
63L, 90L, 42L, 15L), male_species = structure(c(2L,2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L), .Label = c("speciesA", "speciesB"), class = "factor"),
female_species = structure(c(1L, 1L, 1L,1L, 1L, 1L, 1L, 2L, 2L, 2L), .Label
= c("speciesA", "speciesB"), class = "factor"), courtship = c(89L, 1L, 4L,
5L, 4L, 2L,1L, 0L, 10L, 3L), abdomen_bending = c(64L, 1L, 3L, 2L, 2L, 0L,0L,
0L, 1L, 0L)), .Names = c("number_of_observations",
"behavior1","male_species", "female_species", "behavior2", "behavior3"),
row.names = c(NA, -10L), class = c("tbl_df", "tbl", "data.frame"))
model1=glm(cbind(behavior1,(number_of_observations-
behavior1))~female_species,data=reproduced.data,family=quasibinomial)
model2=glm(cbind(behavior2,(number_of_observations-
behavior2))~female_species,data=reproduced.data,family=quasibinomial)
htmlreg(list(model1,model2),
custom.model.names = c("Behavior1","Behavior2"),
label = "tab:5",
stars = c(0.05,0.01, 0.001),
dcolumn = TRUE,
booktabs = TRUE,
single.row = TRUE,
include.aic=FALSE,
include.bic=FALSE,
include.loglik=FALSE,
include.dispersion=TRUE,
caption="")
summary(model1)
r glm texreg
add a comment |
up vote
0
down vote
favorite
I used glm with family=quasibinomial to model a response variables with overdispersion. I now am making model comparison tables in texreg comparing different models. I want to include the dispersion parameter in the statistics at the bottom of the table.
Using summary() prints out the dispersion/scale parameter, so I know it is there, but I was hoping someone could help me get it into the texreg table?
The include.dispersion=TRUE doesn't seem to work, and in extract.glm the dispersion parameter doesn't show up. I am open to other table making packages or any other way to solve the problem.
reproduced.data<- structure(list(number_of_minutes = c(120L, 1L, 67L, 102L,
120L,120L, 120L, 120L, 55L, 120L), approach = c(60L, 1L, 15L, 29L,66L, 66L,
63L, 90L, 42L, 15L), male_species = structure(c(2L,2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L), .Label = c("speciesA", "speciesB"), class = "factor"),
female_species = structure(c(1L, 1L, 1L,1L, 1L, 1L, 1L, 2L, 2L, 2L), .Label
= c("speciesA", "speciesB"), class = "factor"), courtship = c(89L, 1L, 4L,
5L, 4L, 2L,1L, 0L, 10L, 3L), abdomen_bending = c(64L, 1L, 3L, 2L, 2L, 0L,0L,
0L, 1L, 0L)), .Names = c("number_of_observations",
"behavior1","male_species", "female_species", "behavior2", "behavior3"),
row.names = c(NA, -10L), class = c("tbl_df", "tbl", "data.frame"))
model1=glm(cbind(behavior1,(number_of_observations-
behavior1))~female_species,data=reproduced.data,family=quasibinomial)
model2=glm(cbind(behavior2,(number_of_observations-
behavior2))~female_species,data=reproduced.data,family=quasibinomial)
htmlreg(list(model1,model2),
custom.model.names = c("Behavior1","Behavior2"),
label = "tab:5",
stars = c(0.05,0.01, 0.001),
dcolumn = TRUE,
booktabs = TRUE,
single.row = TRUE,
include.aic=FALSE,
include.bic=FALSE,
include.loglik=FALSE,
include.dispersion=TRUE,
caption="")
summary(model1)
r glm texreg
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I used glm with family=quasibinomial to model a response variables with overdispersion. I now am making model comparison tables in texreg comparing different models. I want to include the dispersion parameter in the statistics at the bottom of the table.
Using summary() prints out the dispersion/scale parameter, so I know it is there, but I was hoping someone could help me get it into the texreg table?
The include.dispersion=TRUE doesn't seem to work, and in extract.glm the dispersion parameter doesn't show up. I am open to other table making packages or any other way to solve the problem.
reproduced.data<- structure(list(number_of_minutes = c(120L, 1L, 67L, 102L,
120L,120L, 120L, 120L, 55L, 120L), approach = c(60L, 1L, 15L, 29L,66L, 66L,
63L, 90L, 42L, 15L), male_species = structure(c(2L,2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L), .Label = c("speciesA", "speciesB"), class = "factor"),
female_species = structure(c(1L, 1L, 1L,1L, 1L, 1L, 1L, 2L, 2L, 2L), .Label
= c("speciesA", "speciesB"), class = "factor"), courtship = c(89L, 1L, 4L,
5L, 4L, 2L,1L, 0L, 10L, 3L), abdomen_bending = c(64L, 1L, 3L, 2L, 2L, 0L,0L,
0L, 1L, 0L)), .Names = c("number_of_observations",
"behavior1","male_species", "female_species", "behavior2", "behavior3"),
row.names = c(NA, -10L), class = c("tbl_df", "tbl", "data.frame"))
model1=glm(cbind(behavior1,(number_of_observations-
behavior1))~female_species,data=reproduced.data,family=quasibinomial)
model2=glm(cbind(behavior2,(number_of_observations-
behavior2))~female_species,data=reproduced.data,family=quasibinomial)
htmlreg(list(model1,model2),
custom.model.names = c("Behavior1","Behavior2"),
label = "tab:5",
stars = c(0.05,0.01, 0.001),
dcolumn = TRUE,
booktabs = TRUE,
single.row = TRUE,
include.aic=FALSE,
include.bic=FALSE,
include.loglik=FALSE,
include.dispersion=TRUE,
caption="")
summary(model1)
r glm texreg
I used glm with family=quasibinomial to model a response variables with overdispersion. I now am making model comparison tables in texreg comparing different models. I want to include the dispersion parameter in the statistics at the bottom of the table.
Using summary() prints out the dispersion/scale parameter, so I know it is there, but I was hoping someone could help me get it into the texreg table?
The include.dispersion=TRUE doesn't seem to work, and in extract.glm the dispersion parameter doesn't show up. I am open to other table making packages or any other way to solve the problem.
reproduced.data<- structure(list(number_of_minutes = c(120L, 1L, 67L, 102L,
120L,120L, 120L, 120L, 55L, 120L), approach = c(60L, 1L, 15L, 29L,66L, 66L,
63L, 90L, 42L, 15L), male_species = structure(c(2L,2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L), .Label = c("speciesA", "speciesB"), class = "factor"),
female_species = structure(c(1L, 1L, 1L,1L, 1L, 1L, 1L, 2L, 2L, 2L), .Label
= c("speciesA", "speciesB"), class = "factor"), courtship = c(89L, 1L, 4L,
5L, 4L, 2L,1L, 0L, 10L, 3L), abdomen_bending = c(64L, 1L, 3L, 2L, 2L, 0L,0L,
0L, 1L, 0L)), .Names = c("number_of_observations",
"behavior1","male_species", "female_species", "behavior2", "behavior3"),
row.names = c(NA, -10L), class = c("tbl_df", "tbl", "data.frame"))
model1=glm(cbind(behavior1,(number_of_observations-
behavior1))~female_species,data=reproduced.data,family=quasibinomial)
model2=glm(cbind(behavior2,(number_of_observations-
behavior2))~female_species,data=reproduced.data,family=quasibinomial)
htmlreg(list(model1,model2),
custom.model.names = c("Behavior1","Behavior2"),
label = "tab:5",
stars = c(0.05,0.01, 0.001),
dcolumn = TRUE,
booktabs = TRUE,
single.row = TRUE,
include.aic=FALSE,
include.bic=FALSE,
include.loglik=FALSE,
include.dispersion=TRUE,
caption="")
summary(model1)
r glm texreg
r glm texreg
asked Nov 12 at 14:36
person
155
155
add a comment |
add a comment |
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',
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%2f53264412%2fextract-dispersion-parameter-from-quasibinomial-glm-and-add-to-statistics-in-tex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53264412%2fextract-dispersion-parameter-from-quasibinomial-glm-and-add-to-statistics-in-tex%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