id
int64
1,375,518,866B
1,392,721,144B
attitude
int64
0
2
1,387,627,601,955,545,000
0
1,392,383,167,009,476,600
0
1,392,313,218,199,064,600
1
1,392,235,377,658,896,400
2
1,391,884,274,928,799,700
0
1,392,524,793,765,847,000
2
1,391,871,847,076,188,200
2
1,391,777,336,731,840,500
2
1,392,272,158,194,348,000
0
1,391,960,064,882,319,400
2
1,391,896,823,367,876,600
0
1,391,976,425,964,544,000
2
1,386,941,026,472,841,200
0
1,387,222,088,772,116,500
0
1,392,280,199,006,392,300
0
1,387,595,802,974,036,000
1
1,391,897,868,093,595,600
1
1,392,492,351,789,183,000
0
1,392,719,624,106,504,200
0
1,386,588,774,856,106,000
2
1,386,487,868,609,028,000
1
1,392,718,061,111,844,900
0
1,392,609,492,873,924,600
1
1,392,279,221,096,099,800
1
1,392,447,570,845,315,000
1
1,392,085,259,932,549,000
1
1,387,959,289,906,610,200
1
1,392,630,695,122,636,800
2
1,387,887,115,137,167,400
2
1,391,841,511,583,584,300
1
1,392,101,602,727,710,700
1
1,392,011,460,822,270,000
1
1,391,909,994,602,274,800
1
1,387,156,645,852,057,600
1
1,387,959,296,663,736,300
1
1,392,117,297,704,222,700
1
1,392,371,484,568,469,500
1
1,392,100,494,152,069,000
1
1,391,844,670,804,742,100
2
1,387,017,496,553,734,100
2
1,386,650,798,948,593,700
1
1,387,960,091,194,929,200
2
1,392,220,899,277,906,000
1
1,392,507,291,245,715,500
1
1,387,099,549,546,733,600
2
1,392,718,999,675,355,100
1
1,386,643,401,899,081,700
2
1,386,323,457,999,138,800
2
1,392,523,817,235,280,000
1
1,386,158,974,743,896,000
1
1,391,782,485,638,348,800
1
1,392,449,489,194,135,600
1
1,392,084,676,743,819,300
1
1,392,003,504,382,922,800
1
1,392,290,585,445,388,300
0
1,380,527,402,409,922,600
1
1,391,888,027,593,678,800
2
1,386,305,822,565,802,000
1
1,392,397,665,602,781,200
1
1,392,368,625,923,805,200
1
1,392,367,992,122,523,600
1
1,386,303,353,026,748,400
1
1,386,303,766,840,885,200
1
1,392,448,197,818,085,400
1
1,391,784,911,883,972,600
1
1,392,566,525,568,209,000
2
1,392,670,927,972,933,600
1
1,392,538,100,186,845,200
1
1,386,444,168,420,077,600
2
1,386,663,099,613,290,500
2
1,391,885,920,023,064,600
1
1,391,871,392,753,324,000
1
1,391,828,326,671,687,700
1
1,392,069,148,587,577,300
1
1,387,011,645,004,648,400
1
1,391,778,186,883,645,400
1
1,392,460,685,683,085,300
2
1,391,812,174,998,290,400
0
1,387,465,519,528,169,500
0
1,392,101,826,997,063,700
0
1,392,521,076,442,374,100
2
1,392,569,009,950,896,000
0
1,392,579,577,965,330,400
0
1,392,614,987,236,053,000
0
1,392,402,142,586,081,300
2
1,386,316,582,788,374,500
2
1,392,264,121,152,729,000
2
1,379,297,136,865,513,500
1
1,392,582,723,273,961,500
2
1,392,658,358,545,514,500
1
1,392,552,563,329,863,700
1
1,392,035,288,164,274,200
2
1,386,305,843,558,330,400
0
1,392,432,249,522,512,000
1
1,392,522,341,469,540,400
1
1,392,205,961,872,384,000
0
1,392,176,955,219,267,600
0
1,387,158,559,792,697,300
0
1,387,157,383,995,080,700
0
1,392,444,351,389,786,000
2

Dataset Card for COVID-19-vaccine-attitude-tweets

Dataset Summary

The dataset consists of 2564 manually annotated tweets related to COVID-19 vaccines. The dataset can be used to discover the attitude expressed in the tweet towards the subject of COVID-19 vaccines. Tweets are in English. The dataset was curated in such a way as to maximize the likelihood of tweets with a strong emotional tone. We have assumed the existence of three classes:

  • PRO (label 0): positive, the tweet unequivocally suggests support for getting vaccinated against COVID-19
  • NEUTRAL (label 1): the tweet is mostly informative, does not show emotions vs. presented information, contains strong positive or negative emotions but concerning politics (vaccine distribution, vaccine passports, etc.)
  • AGAINST (label 2): the tweet is clearly against vaccination and contains warnings, conspiracy theories, etc.

The dataset does not contain the content of Twitter statuses. Original tweets can be obtained via Twitter API. You can use twitter library:

import twitter
from datasets import load_dataset

api = twitter.Api(consumer_key=<consumer key>,
                  consumer_secret=<consumer secret>,
                  access_token_key=<access token>,
                  access_token_secret=<access token secret>,
                  sleep_on_rate_limit=True)

tweets = load_dataset('webimmunization/COVID-19-vaccine-attitude-tweets') 

def add_tweet_content(example):
    try:
        status = api.GetStatus(tweet_id)
    except twitter.TwitterError as err:
        print(err)
        status = {'text': None}
    return {'status': status.text}

tweets_with_text = tweets.map(add_tweet_content)

Supported Tasks and Leaderboards

  • text-classification: The dataset can be used to discover the attitude expressed in the tweet towards the subject of COVID-19 vaccines, whether the tweet presents a positive, neutral or negative attitude. Success on this task can be measured by achieving a high AUROC or F1.

Languages

[EN] English. The text that can be accessed via the Twitter API using the identifiers in this dataset is in English.

Dataset Structure

Data Instances

The 1st column is Twitter Status ID and the 2nd column is the label denoting the attitude towards vaccines against COVID-19. Example:

{
  'id': '1387627601955545089',
  'attitude': 0  # positive attitude
}

Data Fields

  • attitude: attitude towards vaccines against COVID-19. 0 denotes positive attitude, 1 denotes neutral attitude, 2 dentoes negative attitude.

  • id: Twitter status id

Data Splits

[Needs More Information]

Dataset Creation

Curation Rationale

[Needs More Information]

Source Data

Social media posts.

Initial Data Collection and Normalization

We queried the Twitter search engine with manually curated hashtags such as #coronavaccine, #getvaccinated, #mRNA, #PfizerGang, #VaccineNoThankYou, #vaccinesWork, #BillGatesVaccine, #VaccinesKill, etc. to fetch tweets related to COVID-19 vaccines. Then we have searched for tweets with conspicuous emotional load, both negative and positive. Once we had the set of emotionally loaded tweets we started fetching other tweets posted by the authors of emotional tweets. We'd been collecting tweets from mid of April for about a month. Then we filtered out tweets that were not related to the vaccines. In this manner, we collected tweets that are more probable to be emotional rather than strictly informative.

Who are the source language producers?

The language producers are users of Twitter.

Annotations

Annotation process

We have manually annotated over 2500 tweets using the following annotation protocol. We have assumed the existence of three classes:

  • PRO (label 0): positive, the tweet unequivocally suggests support for getting vaccinated against COVID-19
  • NEUTRAL(label 1): the tweet is mostly informative, does not show emotions vs. presented information, contains strong positive or negative emotions but concerning politics (vaccine distribution, vaccine passports, etc.)
  • AGAINST(label 2): the tweet is clearly against vaccination and contains warnings, conspiracy theories, etc.

The PRO class consists of tweets which explicitly urge people to go get vaccinated. The AGAINST class contains tweets which explicitly warn people against getting the vaccine.

Tweet annotation has been conducted using Prodigy tool. The annotators were provided with the following instructions:

  • Do not spend too much time on a tweet and try to make a quick decision, the slight discrepancy in labeling (especially if you are deciding between PRO and NEUTRAL) will not affect the classifier significantly.
  • Assign tweets that seem to originate from news sites as NEUTRAL and use PRO for tweets that express unequivocal support for getting the vaccine.
  • There are many tweets on vaccination and politics. They should fall into the NEUTRAL class unless they contain a clear call to action: go get vaccinated!
  • Use only the contents of the tweet to label it, do not open the links if the content of a tweet is not enough for labeling (e.g., “Hmm, interesting, https://t.co/ki345o2i345”), skip such tweets instead of giving it a label.
  • Use the option to skip a tweet only when there is nothing in the tweet except for an URL or a few meaningless words, otherwise do not hesitate to put the tweet in the NEUTRAL class.

We have asked 8 annotators to annotate the same set of 100 tweets using the guidelines proposed in the annotation protocol to verify the annotation protocol. We have measured the interrater agreement using the Fliess' kappa coefficient [Fleiss 1971][2]. The results were as follows:

  • when measuring the agreement with four possible classes (PRO, NEUTRAL, AGAINST, NONE, where the last class represents tweets that were rejected from annotation), the agreement is kappa=0.3940
  • when measuring the agreement after removing tweets that were rejected, the agreement is kappa=0.3560
  • when measuring the agreement if rejected tweets are classified as NEUTRAL, the agreement is kappa=0.3753
  • when measuring the agreement for only two classes (using PRO, NEUTRAL and NONE as one class, and AGAINST as another class), the agreement is kappa=0.5419

Who are the annotators?

Members of the #WebImmunization project

Personal and Sensitive Information

According to the Twitter developer policy, if displayed content ceases to be available through the Twitter API, it can not be obtained from other sources. Thus, we provide tweets' ids to maintain the integrity of all Twitter content with Twitter service. The proper way to extract tweets' content is via Twitter API. Whenever Twitter decided to suspend the author of the tweet, or the author decides to delete their tweet it won't be possible to obtain the tweet's content with this dataset.

Considerations for Using the Data

Social Impact of Dataset

The COVID-19 is a serious global health threat that can be mitigated only by public health interventions that require massive participation. Mass vaccination against COVID-19 is one of the most effective and economically promising solutions to stop the spread of the Sars-Cov-2 virus, which is responsible for the pandemic. Understanding how misinformation about COVID-19 vaccines is spreading in one of the globally most important social networks is paramount.

Discussion of Biases

[Needs More Information]

Other Known Limitations

Interannotator agreement

According to a popular interpretation of Fleiss' kappa [Landis 1977][2], the annotators are in fair agreement in the first three scenarios and moderate agreement in the last scenario. These results suggest that the annotators are struggling to distinguish between PRO and NEUTRAL classes, and sometimes they have divergent opinions on whether the tweet should be rejected from training. Still, they are coherent when labeling AGAINST tweets.

Suspended account & deleted tweets

Some of the statuses from the dataset can not be obtained due to account suspension or tweet deletion. The last time we check (15th of November, 2021), about 12% of tweets were authored by suspended accounts and about 10% were already deleted.

Dataset Curators

Agata Olejniuk Poznan University of Technology, Poland

The research leading to these results has received funding from the EEA Financial Mechanism 2014-2021. Project registration number: 2019/35/J/HS6 /03498.

Licensing Information

[Needs More Information]

Citation Information

@inproceedings{krysinska2021careful,
  title={Be Careful Who You Follow: The Impact of the Initial Set of Friends on COVID-19 Vaccine Tweets},
  author={Krysi{\'n}ska, Izabela and W{\'o}jtowicz, Tomi and Olejniuk, Agata and Morzy, Miko{\l}aj and Piasecki, Jan},
  booktitle={Proceedings of the 2021 Workshop on Open Challenges in Online Social Networks},
  pages={1--8},
  year={2021}
}

DOI

Contributions

We would like to cordially thank the members of the #WebImmunization project for helping with data annotation.

References

[1]: Joseph L Fleiss. Measuring nominal scale agreement among many raters.Psychological bulletin, 76(5):378, 1971.

[2]: J Richard Landis and Gary G Koch. The measurement of observer agreement for categorical data. biometrics, pages 159–174, 1977.

Downloads last month
3
Edit dataset card