| data.doges {dogesr} | R Documentation |
Load data into the environment
Description
Load data.doges into the environment
Usage
data("doges")
Value
A dataframe with a row for every doge and doge marriage, and the columns
-
DogeFull name of the doge. -
DogaressaFull name of the dogaressa (wife of the doge). -
Doge.rawFull entry copied from the Wikipedia, original format; includes years of rule. -
Dogaressa.rawFull entry copied from the Wikipedia, original format. Years of marriage are include when known; in other cases, they are simply the same as the years of ruling. -
Century, Start, End, YearsCentury where the office of the doge took place, years it started and ended, and how many years it lasted, parsed fromDoge.raw. -
Family.doge, Family.dogaressaNormalized names of the patrician family the doge and dogaressa belonged. The second is null if it was not a patrician family (usual in the first centuries). -
Family.motherThe family name of the mother of the doge, extracted generally from the Wikipedia
Examples
library(dogesr)
data("doges")
# A summary of the duration of the doges ruling
summary(data.doges$Years)
# The families that actually "made doge"
unique(data.doges$Family.doge)
# Families that had either doge or dogaresse
unique( c(data.doges$Family.doge,data.doges$Family.dogaressa))