Learn R Programming

SARP.compo (version 0.1.8)

poteries: Composition of Roman poteries

Description

This data set gives the oxide composition of several potteries found in five different archaelogic sites of the United Kingdom. Composition was obtained using atomic absorption spectrometry.

Usage

data(poteries)

Arguments

Format

A data frame with 14 columns and 48 rows. Each row gives the composition of a pottery (columns 2 to 10), the archaelogical site where it was found (columns 6 and 7):

IDfactorPottery sample identifier (see original paper appendix)
AlnumericPercentage of aluminium oxide
FenumericPercentage of iron oxide
MgnumericPercentage of magnesium oxide
CanumericPercentage of calcium oxide
NanumericPercentage of natrium oxide
KnumericPercentage of kalium oxide
TinumericPercentage of titanim oxide
MnnumericPercentage of manganese oxide
BanumericPercentage of baryum oxide
SitefactorKiln site
PaysfactorLocation of the kiln site
CouleurfactorExternal color of the pottery
DatefactorApproximate date of the pottery

References

A. Tubb, A. J. Parker, and G. Nickless (1980). The analysis of Romano-British pottery by atomic absorption spectrophotometry. Archaeometry, 22, 153-171.

Hand, D. J., Daly, F., Lunn, A. D., McConway, K. J., and E., O. (1994) A Handbook of Small Data Sets. Chapman and Hall -- for the short version of the dataset.

Examples

Run this code
  data( poteries )
  # Reconstruct the car version of this dataset
  dcar <- poteries[ , c( 'Al', 'Fe', 'Mg', 'Ca', 'Na', 'Site' ) ]
  dcar <- droplevels( dcar[ -which( dcar$Site == "College of Art" ), c( 6, 1:5 ) ] )
  levels( dcar$Site )[ c( 1, 3, 4 ) ] <- c( "AshleyRails", "Islethorns", "Llanedyrn" )

  # Reconstruct the DASL version of this dataset
  ddasl <- dcar[ , c( 2:6, 1 ) ]
  levels( ddasl$Site ) <- c( 'A', 'C', 'I', 'L' )

Run the code above in your browser using DataLab