I have become increasingly interested in the use of tarot as means of self-reflection. Modern tarot decks are usually composed of 78 cards split into two groups: the Major Arcana with 22 cards and the Minor Arcana with 56 cards assigned to 4 suits. Tarot cards symbolize aspects of ourselves, experiences we have, and our relationships. In pop culture, tarot readings are often shown as fortune telling. Many people use tarot to receive messages or direction from the part of existence that is larger than themselves, whether called the universe, god, or something else.
Recently I have been exploring tarot as a tool to examine one’s own mind and emotions without any implications of supernatural elements. For example, if I pull the Three of Cups card which is traditionally associated with friendship, collaboration, and celebration, I would then watch the thoughts and emotions that arise from pulling that card. Do I feel grateful for the friends I have in my life? Am I feeling sorrow for past friendships that have faded? Do I feel any disconnection?
Having absolutely no experience with tarot until a few years ago, I came to the practice with no knowledge of the cards’ visual imagery or meanings. The artwork of many of the modern decks are lovely and worth checking out even for purely asthetic purposes.
Decks usually come with guidebooks outlining the cards’ meanings. Although guides may differ slightly in their explanations, there seems to be good consistency in the meanings associated with cards. Guides will often list a set of keywords for each card to get a quick understanding.
Two questions peeked my curiosity.
I noticed that card meanings tended to be more positive and that guides seemed to neutralize cards that could be perceived as negative, such as the Death card. Do the cards tend to side towards positive meanings? If so, it might be an interesting reflection of what we want from tarot and what perpetuates its use.
I noticed that some keywords appeared regularly for multiple cards. What underlying themes may be running through tarot? These themes might illuminate specific reasons we are drawn to tarot.
I copied the short list of keywords from 10 online tarot guides for the 22 Major Arcana cards. With more time, the analysis could easily be rerun with data for all 78 cards.
Some only read tarot cards right side up; if they pull a card that is upside down, they flip it before proceeding. However, some will leave the card upside down. In these situations, the meaning of the card is reversed (generally opposite) from the card’s regular meaning. These reverse meanings become important when exploring the positive/negative characteristic of card meanings.
Upright and reverse card meaning keywords were noted. Only 4/10 sites had keywords listed for reverse card meanings.
To gauge the level of positive and negative emotional affective of the card keywords, I used the sentimentr package.
#load data
data <- read_xlsx("Tarot_Meaning.xlsx")
#sentiment score for upright and reverse cards
data_s <- sentiment_by(data$Short)
data_s_r <- sentiment_by(data$Short_Inverse)
#rename columns and drop word_count and sd
data_s <- data_s %>% rename(ave_sent_s = "ave_sentiment") %>%
select(-c(2,3))
data_s_r <- data_s_r %>% rename(ave_sent_s_r = "ave_sentiment") %>%
select(-c(2,3))
#bind back to main dataset
data <- data %>% bind_cols(data_s) %>% bind_cols(data_s_r)
#remove sentiment dataframe
rm(data_s, data_s_r)
#average sentiment score per card
avg_table <- data %>% group_by(Card_Name) %>%
summarise(Mean_Upright = mean(ave_sent_s)) %>%
bind_cols(data %>% group_by(Card_Name) %>%
summarise(Mean_Reverse = mean(ave_sent_s_r))) %>%
arrange(desc(Mean_Upright)) %>%
select(-3)
The average sentiment polarity scores provide a guide of the emotional affect of a card, with the more positive card meanings having higher positive scores and more negative card meanings have lower negative scores. Cards with scores closer to 0 have a more neutral affect.
Upright cards were more positive with an average score of 0.485; however, with an average of -0.299 the reversed cards didn’t have as strong of a negative average score one would expect if the meanings were just simply flipped.
Most interesting is that the range of sentiment scores for the upright cards (-1.199 to 1.563) was much wider than the reversed cards (-0.499 to 0.163).
## Card_Name...1 Mean_Upright Mean_Reverse
## Length:22 Min. :-1.199 Min. :-0.499
## Class :character 1st Qu.: 0.259 1st Qu.:-0.360
## Mode :character Median : 0.603 Median :-0.341
## Mean : 0.485 Mean :-0.299
## 3rd Qu.: 0.890 3rd Qu.:-0.263
## Max. : 1.563 Max. : 0.163
Numbers are great, but to get a real feel for the differences in cards, I made black and white copies of the traditional Rider-Waite tarot deck and placed the cards on a positive to negative continuum.
Starting with the most positive cards, the plot moves to neutral cards and then negative cards. Upright cards are on top of the line, and reversed cards are below the line.
The high-level overview shows how the upright cards are more evenly spread, although skewed positive. The reverse cards tend to be more negative, but cluster much closer.
The following slides provide a more detailed view.