-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path02-methodology.qmd
188 lines (125 loc) · 13.4 KB
/
02-methodology.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# Methodology
```{r}
#| label: load-pkg
library(tidyverse)
library(tidymodels)
library(knitr)
library(reshape)
library(ggplot2)
library(dplyr)
library(lme4)
library(MASS)
library(car)
library(MuMIn)
library(lmerTest)
library(ggplot2)
library(dplyr)
library(broom.mixed)
library(forcats)
library(sjPlot)
theme_set(theme_minimal(base_size = 11))
```
```{r}
#| label: load-data
#| message: false
gardnerjanson <- read_csv(here::here("processed-data/gardnerjanson.csv"))
gardnerjanson_museums <- read_csv(here::here("processed-data/gardnerjanson_museums.csv"))
```
```{r}
#| label: lmm_prep
gardnerjanson_museums_mod <- gardnerjanson_museums %>%
filter(!startsWith(artist_name, "N/A")) %>%
mutate(artist_race_nwi = if_else(artist_race == "White", "White", "Non-White"))
gardnerjanson_museums_mod <- gardnerjanson_museums_mod %>%
mutate(artist_nationality_other = factor(artist_nationality_other,
levels = c("American", "French", "Other", "British", "German", "Spanish")
))
```
```{r}
#| label: lmm_full
lmm_full <- lmer(log(space_ratio_per_page_total) ~ artist_race_nwi
+ artist_ethnicity
+ artist_gender
+ artist_nationality_other
+ moma_count_to_year
+ whitney_count_to_year +
(1 | artist_name),
data = gardnerjanson_museums_mod,
REML = FALSE)
```
```{r}
#| label: lmm_test
lmm <- lmer(log(space_ratio_per_page_total) ~ artist_race_nwi
+ artist_ethnicity
+ artist_gender
+ artist_nationality_other
+ moma_count_to_year
+ whitney_count_to_year
+ artist_nationality_other*moma_count_to_year
+ artist_race_nwi*moma_count_to_year
+ artist_ethnicity*moma_count_to_year
+ artist_race_nwi*whitney_count_to_year
+ artist_ethnicity*whitney_count_to_year
+ (1 | artist_name),
data = gardnerjanson_museums_mod,
REML = FALSE)
```
```{r}
#| label: lmm_step
final_model <- lmerTest::step(lmm)
```
```{r}
#| label: lmm
lmm <- lmer(log(space_ratio_per_page_total) ~ artist_nationality_other
+ moma_count_to_year
+ artist_nationality_other*moma_count_to_year
+ (1 | artist_name),
data = gardnerjanson_museums_mod,
REML = FALSE)
```
## Data Collection
### Textbook data
#### **Scope**
I collected data from 25 different books. I cataloged 9 different books of *Janson's History of Art*, spanning from 1963 to 2011. Additionally, I cataloged 16 different books of *Gardner's Art Through the Ages,* spanning from 1929 to 2020. I used the particular scope of works produced after c. 1750 that were two-dimensional. This scope allowed me to collect information more quickly to understand how the books were changing over time. Across all 25 books, there are a total of `r nrow(gardnerjanson_museums)` observations, which is the sum of the count of artists in every book. In the finalized, gardnerjanson_museums data set, there are `r ncol(gardnerjanson_museums)` different variables cataloged (for further information about each variable, reference the Data Dictionary). There are a total of 414 unique artists.
##### **Outcome Variable:**
Total Space Ratio per Page = I measured with a ruler with centimeters, the length and width of text per work per artist. If the area of text was not a rectangle, I additionally collected the length and width of any extra text. I then used excel to calculate the total area of the text per work per artist. Then I additionally measured the length and width of the figure in the book of the work itself. Again, using excel, I calculated the area of the figure of the work. I then added together the area of figure of a work with the area of text written about the work, to create a variable of total space given to a work. In order to achieve a ratio between total space and the area of a page is in a respective book, as they are inconsistent, I divided the total area of a page from a respective book with the total space given to a work by an artist in a respective book.
##### **Demographic Variables:**
**Artist Gender** = I recorded the gender of the artist as listed by the text. In the case the gender of the artist was not listed, I would do a quick google search to further research their gender. If I couldn't find their gender, I listed such as N/A.
**Artist Nationality** = I recorded the nationality of the artist as listed by the text. In the case the nationality of the artist was not listed, I would do a quick google search to further research their nationality. If I couldn't find their nationality, I listed such as N/A.
**Artist Race** = I recorded the race of the artist as listed by the text. I categorized race based on the guidelines of the US Census.[^1] In the case the race of the artist was not listed, I would do a quick google search to further research their race. If I couldn't find their race, I listed such as N/A.
[^1]: "U.S. Census Bureau Definitions of Race and Ethnicity," United States Census Bureau, last modified July 2014, https://www.mobap.edu/wp-content/uploads/2013/01/US-Census-Bureau-Definitions-of-Race-and-Ethnicity.pdf.
**Artist Ethnicity** = I recorded the ethnicity of the artist as listed by the text. Similarly to race, I categorized ethnicity based on the guidelines of the US Census.[^2] In the case the ethnicity of the artist was not listed, I would do a quick google search to further research their ethnicity. If I couldn't find their ethnicity, I listed such as N/A.
[^2]: United States Census Bureau, "U.S. Census Bureau Definitions of Race and Ethnicity."
##### **Identifying Variables:**
**Artist Name** = The name of the artist as listed by the respective book. At times, each book would spell names slightly differently, so I standardized names across editions as well as across museum exhibition data for the MoMA and The Whitney.
**Year** = I recorded the year of publication of each book.
**Edition Number** = I recorded the edition number of each book.
**Book** = I recorded which book, either Gardner or Janson, the work was mentioned.
#### Selection
As argued in the Introduction and Context, *Janson's History of Art* and *Gardner's Art Through the Ages,* are the two most renowned and significant art history introductory texts through roughly the last century.
#### Limitations
I have limited my data collecting in *Janson's History of Art* and *Gardner's Art Through the Ages* to only including two-dimensional art made after c. 1750. This omits sculpture and architecture and how the story of art changes from the beginning of time to c. 1750. I did such as I am most interested in how the diversity of artists changes through editions, and because it only took roughly 1/5 of the time to catalog as I was only cataloging roughly 1/5 of each book. Additionally, two-dimensional works are more frequently included in museum exhibitions spaces than works of sculpture and architecture. My research would be more robust and complete had I cataloged every work in every edition. I am fully aware of this limitation, yet I believe my conclusions are significant within my scope.
### Museum data
#### Scope
My second research question is looking at if and or how an artist's inclusion in museums exhibitions impacts the amount of total area an artist is given in a particular book. I initially began this research as a group project for a class titled, "Art Markets." In order to collect information regarding museum exhibitions, my colleague, David Smoot ('21), web scraped the MoMA's website for the entirety of its catalog history from when its doors first opened in 1929 through the date he scraped the MoMA's website which was March 14th, 2021. He did the same thing with The Whitney's website and web scraped their exhibition history from 1933 through when he scraped the website, March 30th, 2021. There was a total of 10,630 observations in the MoMA data set and 13,736 at The Whitney. An observation is an appearance of an artist in an exhibition.
#### Selection
The Whitney and the MoMA were chosen as they are located in New York City, arguably the center of the art world as we know it, and because of the relative accessibility of historic exhibition data.
#### Limitations
The inclusion of more museums both domestically and internationally would lend the museum data sets greater power to provide context, and an independent metric for the importance of the exhibition, such as press coverage, would be more useful as a comparison to the total space ratio per page in the textbook than the number of exhibitions. The Whitney also is a museum of only American art, meaning they only include artists who are in *Janson's History of Art* or *Gardner's Art Through the Ages* who are also American. Due to this, Whitney most likely will not be a strong predictor of the amount of area a given artist has as only about 30% of the artists in Janson and Gardner are American. Also, The Whitney appears to only list their annual shows on their website prior to 1997, so only the MoMA has complete data.
### Overview of Data Collection
I finished my data collection process with four separate data sets. I had one in which I collected demographic and total space information for the nine books of *Janson's History of Art,* and a second doing the same for the sixteen books of *Gardner's Art Through the Ages.* I then had a data set of the MoMA's exhibition history from 1929-March 14th, 2021 and lastly a data set of The Whitney's exhibition history from 1933-March 30th, 2021.
## Data Preparation
In order to create one data set, I went through a number of steps to join data from all four in R Studio. I began with binding the rows from the Janson data set and the Gardner data set. I then created a new variable of Artist Unique ID in which I assigned a number to each artist in alphabetical order across all editions of both books. In some cases, there are artists with multiple works cataloged in a particular edition. I was able to sum the total space per work such that an artist's name would only show up once per edition with a total space ratio per page value in centimeters squared.
Pivoting to joining The Whitney's catalog history and the MoMA's catalog history with the data set I just created with both Janson and Gardner observations, I had to create a variable called Whitney Count to Year and MoMA Count to Year respectively. This is because as the publication year of books changes through time, the amount of exhibitions that are given to an artist has the possibility to change through time as well.
#### Museum Exhibitions Count Variables:
**Whitney Count to Year** = The count of exhibitions held by The Whitney of a particular artist at a particular moment of time, as highlighted by year.
**MoMA Count to Year** = The count of exhibitions held by the Museum of Modern Art (MoMA) of a particular artist at a particular moment of time, as highlighted by year.
## Model Selection
### Data Preparation for Modeling Purposes
In order to prepare my data further for the purposes of regression, I had to re-categorize the variable of artist nationality and artist race. Firstly, since there are myriad nationalities recorded through all 25 books, I had to condense artist nationality to artist nationality other such that I would only receive five varying betas rather than more than thirty.
**Artist Nationality Other** = The nationality of the artist. Of the total count of artists through all editions of *Janson's History of Art* and *Gardner's Art Through the Ages,* 77.32% account for American, French, British, German, and Spanish. Therefore, the categorical strings of this variable are American, French, British, German, Spanish, and Other.
In regard to artist race, there are so few observations of artists who are non-white that when running a regression with a categorizing non-white even further into their respective cataloged races with only a handful of data points is not statistically sufficient nor informative. The buckets of information at the respective race-level were too small and therefore rank deficient. Therefore I created the variable artist race non-white indicator (artist race nwi).
**Artist Race NWI** = The non-white indicator for artist race, meaning if an artist's race is denoted as either white or non-white.
Lastly, I releveled my data such that the baseline demographic of an artist reflects the most common category across an artist's gender, race, ethnicity, and nationality, which is male, white, of Hispanic or Latino origin, and American respectively.
### Linear Mixed-Effects Model
I chose to use a linear mixed-effects model as the data contains a random effect at the artist level as multiple observations in the data can be by the same artist. Using a linear mixed-effects model with artist name as the random effect accounts for the dependence between observations of the same artist, therefore allowing independence to be satisfied for our model. Additionally, I chose to log transform the outcome variable, as the total space ratio per page is extremely right-skewed. Performing the log transformation allows for the residuals to have constant variance (homoscedasticity). In regards to choosing the combination of both main fixed effects and interaction fixed effects, I used a step-wise model selection methodology and chose a model that optimizes AIC.