historydata: Data Sets for Historians

> library(historydata)

バージョン: 0.1


関数名 概略
catholic_dioceses Roman Catholic dioceses in the United States, Canada, and Mexico
early_colleges Early colleges in the United States
historydata Datasets for historians
judges Federal judges in the United States of America
naval_promotions Promotions of U.S. Navy officers, 1798-1849
paulist_missions Records of missions held by the Paulist Fathers, 1851-1893
sarna Population estimates of American Jews
tudors Tudor dynasty
us_national_population Population of the United States, 1790-2010
us_state_populations Populations of US states and territories, 1790-2010

catholic_dioceses

> head(catholic_dioceses)
Source: local data frame [6 x 6]

                     diocese  rite      lat      long   event       date
                       (chr) (chr)    (dbl)     (dbl)  (fctr)     (time)
1        Baltimore, Maryland Latin 39.29038 -76.61219 erected 1789-04-06
2     New Orleans, Louisiana Latin 29.95107 -90.07153 erected 1793-04-25
3      Boston, Massachusetts Latin 42.35843 -71.05977 erected 1808-04-08
4       Louisville, Kentucky Latin 38.25266 -85.75846 erected 1808-04-08
5         New York, New York Latin 40.71435 -74.00597 erected 1808-04-08
6 Philadelphia, Pennsylvania Latin 39.95233 -75.16379 erected 1808-04-08

early_colleges

> head(early_colleges)
Source: local data frame [6 x 6]

                 college         original_name         city state
                   (chr)                 (chr)        (chr) (chr)
1                Harvard                    NA    Cambridge    MA
2       William and Mary                    NA Williamsburg    VA
3                   Yale                    NA    New Haven    CT
4 Pennsylvania, Univ. of                    NA Philadelphia    PA
5              Princeton College of New Jersey    Princeton    NJ
6               Columbia        King's College     New York    NY
Variables not shown: established (int), sponsorship (chr)

judges

> head(judges_people)
Source: local data frame [6 x 13]

  judge_id name_first name_middle name_last name_suffix birth_date
     (int)      (chr)       (chr)     (chr)       (chr)      (int)
1     3419     Ronnie          NA    Abrams          NA       1968
2        1    Matthew          T.   Abruzzo          NA       1889
3        2     Marcus      Wilson   Acheson          NA       1828
4        3    William       Marsh     Acker         Jr.       1927
5        4     Harold      Arnold  Ackerman          NA       1928
6        5      James       Waldo  Ackerman          NA       1926
Variables not shown: birthplace_city (chr), birthplace_state (chr),
  death_date (int), death_city (chr), death_state (chr), gender (chr),
  race (chr)
> head(judges_appointments)
Source: local data frame [6 x 15]

  judge_id                                             court_name
     (int)                                                  (chr)
1     3419    U. S. District Court, Southern District of New York
2        1     U. S. District Court, Eastern District of New York
3        2 U. S. District Court, Western District of Pennsylvania
4        3     U. S. District Court, Northern District of Alabama
5        4           U. S. District Court, District of New Jersey
6        5    U. S. District Court, Southern District of Illinois
Variables not shown: court_type (chr), president_name (chr),
  president_party (chr), nomination_date (chr), predecessor_last_name
  (chr), predecessor_first_name (chr), senate_confirmation_date (chr),
  commission_date (chr), chief_judge_begin (int), chief_judge_end (int),
  retirement_from_active_service (chr), termination_date (chr),
  termination_reason (chr)
> head(naval_promotions)
Source: local data frame [6 x 5]

     id               name generation       rank       date
  (int)              (chr)      (int)     (fctr)      (chr)
1     1        Abbot, Joel          3 midshipman 1812-06-18
2     2     Abbot, Trevett          4 midshipman 1848-10-13
3     3      Abbott, Isaac          4 midshipman 1820-05-10
4     4 Abbott, J. Francis          4 midshipman 1837-12-27
5     5   Abbott, James W.          4 midshipman 1822-05-01
6     6  Abbott, Thomas C.          3 midshipman 1814-12-06

paulist_missions

> head(paulist_missions)
Source: local data frame [6 x 11]

  mission_number                        church          city state
           (int)                         (chr)         (chr) (chr)
1              1           St. Joseph's Church      New York    NY
2              2          St. Michael's Church       Loretto    PA
3              3             St. Mary's Church Hollidaysburg    PA
4              4 Church of St. John Evangelist     Johnstown    PA
5              5            St. Peter's Church      New York    NY
6              6       St. Patrick's Cathedral      New York    NY
Variables not shown: start_date (chr), end_date (chr), confessions (int),
  converts (int), order (chr), lat (dbl), long (dbl)

sarna

> head(sarna)
Source: local data frame [6 x 3]

   year       estimate value
  (int)         (fctr) (dbl)
1  1660 population_low    50
2  1700 population_low   200
3  1776 population_low  1000
4  1790 population_low  1300
5  1800 population_low  2500
6  1820 population_low  2650

tudors

> head(tudors)
Source: local data frame [6 x 3]

      person_1            person_2 relationship
         (chr)               (chr)        (chr)
1    Henry VII   Elizabeth of York       spouse
2 Arthur Tudor Catharine of Aragon       spouse
3   Henry VIII Catharine of Aragon       spouse
4   Henry VIII         Anne Boleyn       spouse
5   Henry VIII        Jane Seymour       spouse
6   Henry VIII      Anne of Cleves       spouse

us_national_population

> head(us_national_population)
Source: local data frame [6 x 2]

   year population
  (int)      (int)
1  1790    3929625
2  1800    5308483
3  1810    7239881
4  1820    9638239
5  1830   12860702
6  1840   17063353

us_state_populations

> head(us_state_populations)
Source: local data frame [6 x 4]

  GISJOIN  year         state population
    (chr) (int)         (chr)      (int)
1    G090  1790   Connecticut     237655
2    G100  1790      Delaware      59096
3    G130  1790       Georgia      82548
4    G240  1790      Maryland     319728
5    G250  1790 Massachusetts     475199
6    G330  1790 New Hampshire     141899