Description Usage Format Details Source References Examples
The morphology of 45 Arctic Norway pithouses is described in terms of 6 categorical variables.
1 | data("PitHouses")
|
A data frame with 45 observations on the following 6 variables.
Hearthsa factor with levels None, One, Two, and Charcoal Conc
Deptha factor with levels Deep and Shallow
Sizea factor with levels Small, Medium, and Large
Forma factor with levels Oval and Rectangular
Orienta factor with levels Parallel Coast and Gabel Toward Coast
Entrancea factor with levels One Side, Front and One Side, and None
Data on the morphology of pit houses from Arctic Norway described by Engelstad (1988). The data were scanned from Table A7 in Baxter (1994). The category labels are used rather than the numeric values listed in Table A7. The data represent the Group C pithouses as described in Engelstad (1988) which was more variable than groups A or B. The data were converted into an incidence matrix (Table A8 in Baxter (1994) and Table 3 in Englestad (1988)) and used in a multiple correspondence analysis.
Baxter, M. J. 1994. Exploratory Multivariate Analysis in Archaeology. Edinburgh University Press.
Engelstad, E. 1988. Pit Houses in Arctic Norway - An Investigation of Their Typology Using Multiple Correspondence Analysis. In Multivariate Archaeology, edited by T. Madsen, pp. 71-84. Aarhus University Press.
Carlson, David L. 2017. Quantitative Methods in Archaeology Using R. Cambridge University Press, pp 192-197.
1 2 3 4 5 6 7 8 | data(PitHouses)
# Crosstabulation of Hearths with Size
PitHouses.tbl <- xtabs(~Hearths+Size, PitHouses)
PitHouses.tbl
barplot(PitHouses.tbl, ylab="Frequency", main="Arctic Norway Pithouses", beside=TRUE,
legend.text=TRUE, args.legend=list(title="Hearths"))
barplot(prop.table(PitHouses.tbl, 2)*100, ylim=c(0, 60), main="Arctic Norway Pithouses",
ylab="Percent", beside=TRUE, legend.text=TRUE, args.legend=list(title="Hearths"))
|
Size
Hearths Small Medium Large
None 3 3 1
One 6 3 0
Two 4 10 1
Charcoal Conc 8 5 1
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.