Get startedGet started for free

Subscribers to twitter lists

A twitter list is a curated group of twitter accounts.

Twitter users subscribe to lists that interest them. Collecting user information from twitter lists could help brands promote products to interested customers.

In this exercise, you will extract lists of the twitter account of "NBA", the popular basketball league National Basketball Association.

For one of the lists, you will extract the subscribed users and the user information for some of these users.

The rtweet library has been pre-loaded for this exercise.

This exercise is part of the course

Analyzing Social Media Data in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Extract all the lists "NBA" subscribes to and view the first 4 columns
lst_NBA <- ___("___")
lst_NBA[,1:4]
Edit and Run Code