Title: Data Sets for Historians
Version: 0.1
Description: These sample data sets are intended for historians learning R. They include population, institutional, religious, military, and prosopographical data suitable for mapping, quantitative analysis, and network analysis.
Depends: R (≥ 3.0.2)
Suggests: ggplot2 (≥ 1.0.0)
License: MIT + file LICENSE
LazyData: true
URL: https://github.com/ropensci/historydata
BugReports: https://github.com/ropensci/historydata/issues
Packaged: 2014-12-24 00:51:11 UTC; lmullen
Author: Lincoln Mullen [aut, cre]
Maintainer: Lincoln Mullen <lincoln@lincolnmullen.com>
NeedsCompilation: no
Repository: CRAN
Date/Publication: 2014-12-24 06:08:09

Datasets for historians

Description

This package provides sample datasets of interest to historians, analogous to the datasets package for R generally and the histdata package for datasets from the history of statistics.

References

Citations to the sources for datasets are provided in the documentation for each dataset.


Roman Catholic dioceses in the United States, Canada, and Mexico

Description

Dates when Roman Catholic dioceses and archdioceses in the United States were founded or made metropolitan sees, with geocoded locations. The sources cited indicate that none of these sees have been discontinued.

Usage

catholic_dioceses

Format

A data frame with 425 observations of 6 variables.

Variables

References

This data is compiled from several sources:

Joseph Bernard Code, Dictionary of the American Hierarchy (1789-1964) (New York: Joseph F. Wagner, 1964), 425-26.

For the United States since 1963, Canada, and Mexicode: http://www.catholic-hierarchy.org/

Examples

head(catholic_dioceses)

Early colleges in the United States

Description

This dataset contains information about the founding of colleges established before 1848 in the United States of America.

Usage

early_colleges

Format

A data frame with 65 observations of 6 variables.

Variables

Author(s)

George Oberle, George Mason University

Daniel Walker Howe

References

This data was transcribed by George Oberle from the table "Some American Institutions of Higher Education Founded Before 1848, in Daniel Walker Howe, What Hath God Wrought: The Transformation of America, 1815-1848 (New York: Oxford University Press, 2007), 460-461.

Examples

head(early_colleges)
if(require(ggplot2)) {
  ggplot(early_colleges, aes(x = established)) + geom_bar(binwidth = 5) +
  ggtitle("Founding Dates of Early American Colleges")
}

Federal judges in the United States of America

Description

This dataset contains information about the appointments and careers of all federal judges in United States history since 1789. It includes judges who "judges presidentially appointed during good behavior who have served since 1789 on the U.S. District Courts, the U.S. Courts of Appeals, the Supreme Court of the United States, the former U.S. Circuit Courts, and the federal judiciary's courts of special jurisdiction." Some of the unnecessary information from the source has been excluded.

Format

Two data frames, judges_people and judges_appointments.

Data frames

The data frame judges_people contains information about the judges, such as names and vital information. The data frame judges_appointments contains information about their appointments, such as the name of the court, nominating president, and the dates of service.

References

This data is taken from the Biographical Directory of Federal Judges, 1789-present.

Examples

data(judges_people)
data(judges_appointments)

Description

This dataset contains records of the careers of officers of the line in the United States Navy who became midshipmen between 1798 and 1849. It lists the dates at which officers were promoted to the ranks of midshipment, lieutenant, master commandament, and captain.

Usage

naval_promotions

Format

A data frame with 5,705 observations of 4 variables.

Variables

Author(s)

Abby Mullen, Northeastern University

Edward W. Callahan

References

This data was compiled by Abby Mullen from Edward W. Callahan, Officers of the Continental and U.S. Navy and Marine Corps, 1775-1900 (New York: L. R. Hamersly, 1901), made available via the Naval Historical Center, http://www.ibiblio.org/hyperwar/NHC/Callahan/index.htm. See Mullen's blog post about compiling the data, "Database of Officers of the Line," abbymullen.org, January 5, 2013.

Examples

head(naval_promotions)

Records of missions held by the Paulist Fathers, 1851–1893

Description

This dataset contains transcriptions of records of missions held in by the Paulist Fathers, a Roman Catholic missionary order, in the nineteenth-century United States. This dataset contains only the most interesting data recorded in the full Paulist mission chronicles. The founding members of the Paulist Fathers began as members of the Redemptorist order. Their chronicles include both the missions held as Redemptorists and as Paulists. This transcription only includes missions up to the year 1893; the Paulist Chronicles contain more records than are transcribed here, and the Paulists continued holding missions for many more years than are recorded in the Chronicles.

Usage

paulist_missions

Format

A data frame with 841 observations of 11 variables.

Variables

Author(s)

Lincoln Mullen, George Mason University

References

The Paulist missions are recorded in Chronicle of the Missions Given by the Congregation of Missionary Priests of St. Paul the Apostle, six manuscript volumes, Office of Paulist History and Archives, North American Paulist Center, Washington, DC. Data transcribed by Lincoln Mullen.

Examples

head(paulist_missions)

Population estimates of American Jews

Description

This dataset contains estimates of the population of American Jews.

Usage

sarna

Format

A data frame with 92 observations of 3 variables.

Variables

References

This data is taken from the appendix in Jonathan D. Sarna, American Judaism: A History (New Haven: Yale University Press, 2004), 375-376.

Examples

head(sarna)

Tudor dynasty

Description

Spousal and parent/child relationships among selected members of the Tudor dynasty, suitable for network analysis.

Usage

tudors

Format

A data frame with 35 observations of 3 variables.

Variables

Examples

data(tudors)

Population of the United States, 1790-2010

Description

Population figures for the entire United States of America from the decennial census.

Usage

us_national_population

Format

A data frame with 23 observations of 2 variables.

Variables

References

This dataset has been gathered by the NHGIS. Minnesota Population Center, National Historical Geographic Information System: Version 2.0 (Minneapolis: University of Minnesota, 2011).

Examples

head(us_national_population)
if(require(ggplot2)) {
  ggplot(us_national_population,
         aes(x = year, y = population)) +
  geom_line() +
  ggtitle("Population of the United States, 1790-2010")
}

Populations of US states and territories, 1790-2010

Description

Population figures for US states and territories from the decennial census.

Usage

us_state_populations

Format

A data frame with 983 observations of 4 variables.

Variables

References

This dataset has been gathered by the NHGIS. Minnesota Population Center, National Historical Geographic Information System: Version 2.0 (Minneapolis: University of Minnesota, 2011).

Examples

head(us_state_populations)