ComeçarComece de graça

Twitter data on the map

It will be interesting to visualize tweets on "#vegan" on the map to see regions from where they are tweeted the most. A brand promoting vegan products can target people in these regions for their marketing.

Remember not all tweets will have the geolocation data as this is an optional input for the users.

The geolocation coordinates that you had extracted in the last exercise has been pre-loaded as vegan_coord.

The library maps has also been pre-loaded for this exercise.

Este exercício faz parte do curso

Analyzing Social Media Data in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Omit rows with missing geo-coordinates in the data frame
vegan_geo <- ___(vegan_coord[,c("___", "___")])

# View the output
head(vegan_geo)
Editar e executar o código