Description Usage Format Details Source Examples
Counts of 52 different ceramic types in 6 large tombs and 10 broadly contemporaneous groups of tombs.
1 | data("EIAGraves")
|
A data frame with 52 rows (ceramic types) found in 16 units (a grave or a group of graves).
TypeCeramic type number
G10019 broadly contemporaneous graves and tombs
G200B30 broadly contemporaneous graves and tombs
G200C28 broadly contemporaneous graves and tombs
G201An indidivual tomb
G229An indidivual tomb
G500N19 broadly contemporaneous graves and tombs
G532An indidivual tomb
G542An indidivual tomb
G552An indidivual tomb
G562An indidivual tomb
G60052 broadly contemporaneous graves and tombs
G80039 broadly contemporaneous graves and tombs
G900B41 broadly contemporaneous graves and tombs
G900L3 broadly contemporaneous graves and tombs
G900S5 broadly contemporaneous graves and tombs
G900U7 broadly contemporaneous graves and tombs
The data on counts of 52 different ceramic types in 6 large tombs and 10 broadly contemporaneous groups of tombs come from Tell el-Far'ah (South), Palestine. They were originally published in McClellan (1979). The data were scanned from Table 2.5 in Baxter (2003, p. 25-6). The 52 rows correspond to different pottery types found in association with the burials.
Baxter, M. J. 2003. Statistics in Archaeology. Arnold, London.
McClellan, T. L. 1979. Chronology of the 'Philistine' Burials at Tell el-Farah (South). Journal of Field Archaeology 6: 57-73.
1 2 3 4 5 6 7 8 9 10 | data(EIAGraves)
# How many ceramics of each type?
# Exclude the first column which is the ceramic type number
rowSums(EIAGraves[, -1])
# How many tomb groups contain each type?
rowSums(EIAGraves[, -1]>0)
# How many ceramics in each tomb group?
colSums(EIAGraves[, -1])
# How many types are found in each tomb group?
colSums(EIAGraves[, -1]>0)
|
[1] 15 10 4 13 2 2 10 4 25 52 16 5 16 5 21 24 8 8 19
[20] 8 8 4 4 6 40 27 34 18 19 16 131 5 8 20 14 9 10 2
[39] 77 4 131 12 6 10 10 2 12 30 2 46 30 8
[1] 7 4 3 3 2 2 5 4 9 16 3 4 4 3 9 9 2 4 7 3 4 3 2 2 6
[26] 7 10 5 4 8 14 3 3 7 5 7 5 1 14 2 15 5 4 4 7 2 5 10 2 15
[51] 9 5
G100 G200B G200C G201 G229 G500N G532 G542 G552 G562 G600 G800 G900B
39 148 80 24 27 54 40 76 40 43 151 83 67
G900L G900S G900U
41 70 39
G100 G200B G200C G201 G229 G500N G532 G542 G552 G562 G600 G800 G900B
17 31 11 12 13 22 19 22 17 19 31 20 14
G900L G900S G900U
14 20 16
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.