Chapter 1 Introduction
This document contains supplementary materials associated with the article, “Toward a theory of the mark: A pilot study of ceramic incision morphology”. The volume is organised by chapter, and provides details associated with the experimental and archaeological samples, as well as the preliminary details related to the geometric morphometric analyses. Images of each sample are included; however, processed and unprocessed 3D scan data are embargoed for a period of one year from the most recent submission in which they are employed.
The incision project is part of a long-term research programme, representing an expansion of previous efforts to better comprehend the vagaries associated with Caddo ceramic (Selden Jr. 2017, 2018b, 2018a, 2019; Selden Jr., Perttula, and O’Brien 2014) and lithic morphology (Selden Jr., Dockall, and Shafer 2018; Selden Jr., Dockall, and Dubied 2020), which provided insights into inter- and intraspecific differences in morphology that articulate with Caddo bottles and bifaces (Selden Jr. 2021).
The genesis of this project occurred during a slip, glazing, and atmospheric firing workshop at the Arrowmont School of Arts and Crafts in Gatlinburg, Tennessee, where access to the materials, dry box, and electric kilns provided a means to produce the experimental sample. The archaeological sample was provided with permission and support from the Caddo Nation of Oklahoma, and the incised sherds comes from sites on the Angelina, Davy Crockett, and Sabine National Forests; units of the National Forests and Grasslands in Texas. The National Center for Preservation Technology and Training provided access to their optical profilometer, which was used to generate 3D meshes for the experimental and archaeological samples at their laboratory in Natchitoches, Louisiana. They also provided a copy of the Keyence VR Series Analyzer Software used to render and export the meshes.
The landmarking protocol (see Chapter 2) is identical for both the experimental and archaeological samples, and was designed to capture the profile of the business end of the instrument used by the Caddo to apply each incision. One observation made clear by this preliminary analysis is that a single tool could have been used to apply incisions that render different marks in profile. Since incisions are made while the clay body is not yet dry, the range of variation is potentially greater than that of engraved, trailed, or etched designs, and the deepest cross-section of each incision should provide the most complete profile of the tool employed by Caddo potters to apply these marks.
1.1 Incised Caddo types
Temporal attributes for incised Caddo types were aggregated from published type books (Suhm, Krieger, and Jelks 1954; Suhm and Jelks 1962), and arranged chronologically. The list of incised Caddo types includes those types where the decorative treatments described in the type book made note of incised elements. This provides a basic temporal framework from which chronological components can begin to be isolated. None of the incised sherds used in this study include enough of a decorative pattern to be assigned to a type, meaning that this sample may well span the full temporal range of incised Caddo types. Funding permitted, the project will be expanded to include incisions from specific Caddo types to explore whether Caddo potters may have employed different (or multiple) tools to apply the various decorative motifs that include incised elements. Should that effort meet with success, it would provide the requisite analytical infrastructure needed to begin the pursuit of similar studies of ceramics that include engraved, etched, and trailed elements.
1.1.1 Chronology for incised Caddo types
# load ggplot2
library(ggplot2)
library(wesanderson)
# temporal attributes
<- wes_palette("Moonrise2", 23, type = "continuous")
pal
# gantt chart of relative dates for incised Caddo ceramic types
<-data.frame(Type = c('Belcher Ridged (Bossier)', 'Belcher Ridged (Belcher)', 'Canton Incised', 'Clements Brushed', 'Cowhide Stamped', 'Crockett Curvilinear Incised', 'Davis Incised', 'Dunkin Incised', 'East Incised', 'Foster Trailed-Incised', 'Fulton Aspect Effigy Bowls', 'Haley Complicated Incised', 'Harleton Appliqued', 'Hudson Engraved', 'Karnack Brushed-Incised', 'Kiam Incised', 'Maydelle Incised', 'Military Road Incised', 'Nash Neck Banded', 'Pease Brushed-Incised', 'Pennington Punctated-Incised', 'Spiro Engraved', 'Weches Fingernail Impressed'), # canton/east incised types date to AD 1000, but were modified to 990-1010 so that it would show on the gantt chart
tempDate_Range_CE = c(1100, 1300, 990, 1500, 1200, 500, 500, 500, 990, 1200, 1200, 800, 1200, 1500, 1200, 500, 1200, 1200, 1400, 1100, 500, 500, 500), # in years CE
end = c(1300, 1500, 1010, 1800, 1500, 1000, 1000, 1000, 1010, 1600, 1700, 1200, 1500, 1800, 1500, 1200, 1500, 1500, 1700, 1300, 1000, 1000, 1000) # in years CE
)
# reorder types by beginning of relative date range
$Type <- factor(temp$Type, levels = temp$Type[order(temp$Date_Range_CE)])
temp
# arrange figure
<- ggplot(temp,
type.time aes(x = Date_Range_CE,
xend = end,
y = factor(Type,
levels = rev(levels(factor(Type)))),
yend = Type,
color = Type)) +
geom_segment(size = 2.5) +
scale_colour_manual(values = pal) +
theme(legend.position = "none") +
labs(y = "Caddo Ceramic Type", x = "Date Range CE")
# render figure
type.time