शुरू करेंमुफ़्त में शुरू करें

Follower count to enhance the network plot

The users who retweet most will add more value if they have a high follower count as their retweets will reach a wider audience.

In a network plot, the combination of vertex size indicating the number of retweets by a user and vertex color indicating a high follower count provides clear insights on the most influential users who can promote a brand.

In this exercise, you will create a plot showing the most influential users.

The retweet network nw_rtweet, the dataset followers with the follower count, and vert_size created in the last exercise have all been pre-loaded.

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

यह अभ्यास पाठ्यक्रम का हिस्सा है

Analyzing Social Media Data in R

पाठ्यक्रम देखें

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Categorize follower counts above and below 500
followers$follow <- ___(followers$___ > ___, "1", "0")
head(followers)
कोड संपादित करें और चलाएँ