Digital Humanities · YouTube Comments · Space Narratives

Emotions in Orbit

A comparative sentiment analysis of audience responses to animal and human space mission tragedies using TextBlob and Twitter-RoBERTa.

Research Question

How do audience sentiments differ across Laika and Vladimir Komarov narratives when measured through rule-based and transformer-based sentiment models?

The study compares two kinds of public memory around space tragedy: one centered on Laika, the first dog sent into space, and one centered on Vladimir Komarov, the Soviet cosmonaut who died during a space mission. The dashboard keeps both the narrative difference and the model difference visible at the same time.

Rule-based model

TextBlob uses polarity scores to classify comments as positive, neutral, or negative. It gives a broad overview but can miss context, indirect grief, sarcasm, or subtle emotional language.

Transformer model

Twitter-RoBERTa is a contextual model fine-tuned for social media language. It captures more negative emotional tone in both datasets, especially in the Laika comments.

Laika · RoBERTa Negative 71.50% highest negative concentration
Komarov · TextBlob Neutral 53.51% largest neutral share
Laika · Model Gap +31.21 pts negative share: RoBERTa vs TextBlob
Komarov · Model Gap +20.25 pts negative share: RoBERTa vs TextBlob

Interactive Explorer

Choose a narrative and model

Use the controls to view the sentiment distribution for each analysis run. Counts and percentages come from the executed Colab notebook outputs.

Sentiment distribution

Comparative Dashboard

Model and narrative comparison

The comparison views show how the same YouTube comments shift when interpreted through a rule-based model versus a context-aware transformer model.

Sentiment percentages across all runs

Negative sentiment intensity map

Aggregate results table

Narrative Model Type Sentiment Count Percentage

Interpretation

What the comparison shows

01

Laika produces stronger negative affect

The transformer model identifies the Laika dataset as overwhelmingly negative, with 71.50% of comments classified as negative. This suggests that animal suffering and ethical memory around space experimentation produces especially intense emotional response.

02

Komarov comments appear more reflective

In the human dataset, TextBlob places 53.51% of comments in the neutral category. This indicates that many comments may be descriptive, historical, informational, or reflective rather than directly emotional.

03

Model choice changes the story

TextBlob tends to give a more balanced or neutral distribution. Twitter-RoBERTa consistently increases the negative share, showing that contextual models can reveal emotional intensity that polarity-based scoring may underrepresent.

04

Digital memory is method-dependent

The same comment culture can look different depending on the computational lens. This is important for Digital Humanities, because methods do not simply measure emotion; they shape how emotional memory becomes visible.

Methodology

From YouTube comments to interactive interpretation

  1. 1

    Data loading

    YouTube comment datasets for Laika and Vladimir Komarov were loaded in Google Colab using Pandas.

  2. 2

    Text cleaning

    Emojis, non-ASCII characters, numbers, and repeated spaces were removed to standardize the text.

  3. 3

    Language filtering

    Only English-language comments were retained using language detection so that both models received comparable input.

  4. 4

    Rule-based sentiment

    TextBlob classified comments using polarity thresholds: positive above 0.1, negative below -0.1, and neutral in between.

  5. 5

    Transformer sentiment

    Twitter-RoBERTa processed comments in batches with a short maximum token length suited to YouTube comments.

  6. 6

    Visualization

    Plotly-based interactive charts were used to compare sentiment distributions across narratives and models.

Limitations

Important cautions

Dataset size imbalance

The Laika dataset is much larger than the Komarov dataset. This may make the Laika results more stable and the Komarov results more sensitive to variation.

English-language filtering

Only English comments were analyzed. This excludes multilingual audience responses and may not represent the full global comment culture around these videos.