| profs.nz {VGAMdata} | R Documentation |
This data set contains information on about 22 past or present professors of statistics in New Zealand universities.
data(profs.nz)
A data frame with 22 observations on the following 7 variables.
pubtotala numeric vector, the total number of publications.
citesa numeric vector, the number of citations.
initialscharacter, first and middle and surname initials.
Surnamecharacter, the surname.
firstyeara numeric vector, the earliest indexed publication.
IDa numeric vector, the unique MR Author ID for each professor.
pub1stAuthora numeric vector, the total number of publications which are first authored by the person.
ARPtotala numeric vector, the total number of author/related publications.
institutioncharacter,
with values "MU", "UA",
"UC", "UO", "UW", "VU",
the university affiliation.
The abbreviations are for:
Massey University,
University of Auckland,
University of Canterbury,
University of Otago,
University of Waikato and
Victoria University Wellington.
This data set contains information taken from the MathSciNet database on professors of statistics (and some related fields) affiliated with New Zealand universities.
In the future the following names may be added: C. F. Ansley, P. C. B. Phillips, B. S. Weir, C. S. Withers.
The data is compiled from http://www.ams.org/mathscinet by J. T. Gray in April 2014.
profs.nz
profs.nz[order(with(profs.nz, pubtotal), decreasing = TRUE), ]
## Not run:
plot(pub1stAuthor / pubtotal ~ pubtotal,
main = "Professors of Statistics in NZ",
xlab = "Number of publications in MathSciNet",
ylab = "Proportion of first-authored papers",
data = profs.nz, col = "blue", las = 1, type = "n")
with(profs.nz, text(pubtotal, y = pub1stAuthor / pubtotal,
labels = initials, col = "blue", las = 1))
## End(Not run)