Skip to content

Commit 55b493c

Browse files
fix?
1 parent c7e4667 commit 55b493c

5 files changed

Lines changed: 10 additions & 4 deletions

File tree

DESCRIPTION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ Suggests:
2626
knitr,
2727
rmarkdown,
2828
testthat (>= 3.0.0),
29-
tibble
29+
tibble,
30+
quadprog
3031
VignetteBuilder:
3132
knitr
3233
Config/testthat/edition: 3

data-raw/war_of_the_roses.csv

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,14 @@ id,famID,momID,dadID,name,sex,url,twinID,zygosity
126126
125,1,124,119,"Henry Beaufort, 3rd Duke of Somerset",M,"https://en.wikipedia.org/wiki/Henry_Beaufort,_3rd_Duke_of_Somerset",NA,NA
127127
126,1,124,119,"Edmund Beaufort, Duke of Somerset",M,https://en.wikipedia.org/wiki/Edmund_Beaufort_(died_1471),NA,NA
128128
127,1,124,119,"Margaret Beaufort, Countess of Stafford",F,"https://en.wikipedia.org/wiki/Margaret_Beaufort,_Countess_of_Stafford",NA,NA
129-
128,1,NA,NA,"Humphrey Stafford, 1st Duke of Buckingham",M,"https://en.wikipedia.org/wiki/Humphrey_Stafford,_1st_Duke_of_Buckingham",NA,NA
129+
128,1,135,136,"Humphrey Stafford, 1st Duke of Buckingham",M,"https://en.wikipedia.org/wiki/Humphrey_Stafford,_1st_Duke_of_Buckingham",NA,NA
130130
129,1,120,128,"Humphrey Stafford, Earl of Stafford",M,"https://en.wikipedia.org/wiki/Humphrey_Stafford,_1st_Earl_of_Stafford",NA,NA
131131
130,1,121,123,"Henry Percy, 3rd Earl of Northumberland",M,"https://en.wikipedia.org/wiki/Henry_Percy,_3rd_Earl_of_Northumberland",NA,NA
132132
131,1,83,84,"John Neville, 1st Marquess of Montagu",M,"https://en.wikipedia.org/wiki/John_Neville,_1st_Marquess_of_Montagu",NA,NA
133133
132,1,35,76,Jasper Tudor,M,https://en.wikipedia.org/wiki/Jasper_Tudor,NA,NA
134134
133,1,90,91,"Catherine Woodville, Duchess of Buckingham",F,"https://en.wikipedia.org/wiki/Catherine_Woodville,_Duchess_of_Buckingham",NA,NA
135135
134,1,127,129,"Henry Stafford, 2nd Duke of Buckingham",M,"https://en.wikipedia.org/wiki/Henry_Stafford,_2nd_Duke_of_Buckingham",NA,NA
136+
135,1,16,15,Anne of Gloucester,F,"https://en.wikipedia.org/wiki/Anne_of_Gloucester,_Duchess_of_Buckingham",NA,NA
137+
136,1,NA,NA,"Edmund of Stafford, 5th Earl of Stafford",M,"https://en.wikipedia.org/wiki/Edmund_of_Stafford,_5th_Earl_of_Stafford",NA,NA
138+
137,1,60,61,"Edward, Earl of Warwick",M,"https://en.wikipedia.org/wiki/Edward_Plantagenet,_17th_Earl_of_Warwick",NA,NA
139+
138,1,60,61,"Margaret Plantagenet, Countess of Salisbury",F,"https://en.wikipedia.org/wiki/Margaret_Pole,_Countess_of_Salisbury",NA,NA

data/war_of_the_roses.rda

88 Bytes
Binary file not shown.

vignettes/red-squirrels.Rmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ decades, with fitness measures for most of them.
3535
library(pedigreedata)
3636
library(ggplot2)
3737
library(dplyr)
38-
38+
library(quadprog)
39+
library(ggpedigree)
3940
data(red_squirrels)
4041
head(red_squirrels)
4142
```

vignettes/wars-of-the-roses.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The `war_of_the_roses` dataset encodes this pedigree — `r nrow(pedigreedata::w
2929
```{r load}
3030
library(pedigreedata)
3131
library(dplyr)
32-
32+
library(quadprog)
3333
data(war_of_the_roses)
3434
head(war_of_the_roses[, c("id", "name", "sex", "momID", "dadID", "famID")])
3535
```

0 commit comments

Comments
 (0)