publications: Number of publications produced by Ph.D biochemists

Description Usage Format Source References Examples

Description

Data on the number of publications produced by Ph.D. biochemists, taken from Long (1990).

Usage

1
data("publications")

Format

A data frame containing 915 observations on 6 variables.

articles

integer. articles in the last three years of Ph.D.

gender

factor. coded one for females.

married

factor. coded one if married.

kids

integer. number of children under age six.

prestige

numeric. prestige of Ph.D. program

mentor

integer. articles by mentor in last three years

Source

Supplementary material for Long (1990), in Stata format availlable at http://www.indiana.edu/~jslsoc/stata/socdata/couart2.dta.

References

Long, J. Scott (1990). "The origins of sex differences in science", Social Forces, 68:1297–1315. Long, J. Scott (1997). Regression Models for Categorical and Limited Dependent Variables. Thousand Oaks, California: Sage.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
data("publications", package = "negbin1")

## Poisson model for the number of publications
poi <- glm(articles ~ gender + married + kids + prestige + mentor,
  family = "poisson", data = publications)
summary(poi)

## NB1 model for the number of publications
nb11 <- negbin1(articles ~ gender + married + kids + prestige + mentor,
   data = publications)
summary(nb11)

negbin1 documentation built on May 2, 2019, 6:19 p.m.