DocNow / twarc-network

Generate network visualizations from Twitter data.
MIT License
19 stars 1 forks source link

What are the edges when we select tweets as nodes? #12

Closed arlorostirolla closed 1 year ago

arlorostirolla commented 1 year ago

Hi! and thankyou for your very helpful library. I'm trying to model information cascades in a tweet network, and i'm thinking it might be be more effective to use tweets/retweets as nodes. I was wondering what the edges are when you use tweets as nodes? Is it usernames who have interacted with that tweet? Regards, Arlo

JoanMassachs commented 1 year ago

Let's consider two tweets A and B: There is an edge from a A to B if A is a retweet, a reply or a quote of B. Then, the edge has only one attribute called type with value retweet, reply or quote.

The other information is stored in the nodes as attributes, that are the following:

arlorostirolla commented 1 year ago

Awesome, Thankyou!