Salaries and Related Data from 62 Academics

salary

Format

A data frame with 62 cases and 5 variables:

phd

Time since Ph.D.

pubs

Number of publications.

sex

Sex. 1 female. 0 male.

citations

Number of citations.

salary

Salary in US dollars.

Source

From Chapter 3 in Cohen et al. (2013).

References

Cohen, J., Cohen, P., West, S. G., & Aiken, L. S. (2013). Applied Multiple Regression/Correlation Analysis for the Behavioral Sciences. Hoboken: Taylor and Francis. ISBN:9780805822236 Google:v2pGI8RDAPMC

Examples

data(salary, package = "jeksterslabRdatarepo") str(salary)
#> 'data.frame': 62 obs. of 5 variables: #> $ phd : int 3 6 3 8 9 6 16 10 2 5 ... #> $ pubs : int 18 3 2 17 11 6 38 48 9 22 ... #> $ sex : int 1 1 1 0 1 0 0 0 0 0 ... #> $ citations: int 50 26 50 34 41 37 48 56 19 29 ... #> $ salary : int 51876 54511 53425 61863 52926 47034 66432 61100 41934 47454 ...
head(salary)
#> phd pubs sex citations salary #> 1 3 18 1 50 51876 #> 2 6 3 1 26 54511 #> 3 3 2 1 50 53425 #> 4 8 17 0 34 61863 #> 5 9 11 1 41 52926 #> 6 6 6 0 37 47034