url_data = d3.csvParse(await FileAttachment("urls@1.csv").text(), function(d) {
return {
domain: d.domain,
Tweets: d.tweet_count,
RTs: d.retweet_count_metadata,
QTs: d.quote_count_metadata,
Tweets_community0: d.tweet_count_by_community_0,
RTs_community0: d.retweet_count_by_community_0,
QTs_community0: d.quote_count_by_community_0,
Tweets_community1: d.tweet_count_by_community_1,
RTs_community1: d.retweet_count_by_community_1,
QTs_community1: d.quote_count_by_community_1,
Tweets_community2: d.tweet_count_by_community_2,
RTs_community2: d.retweet_count_by_community_2,
QTs_community2: d.quote_count_by_community_2,
Tweets_community3: d.tweet_count_by_community_3,
RTs_community3: d.retweet_count_by_community_3,
QTs_community3: d.quote_count_by_community_3,
Tweets_community4: d.tweet_count_by_community_4,
RTs_community4: d.retweet_count_by_community_4,
QTs_community4: d.quote_count_by_community_4,
Tweets_suspended: d.tweet_count_by_suspended_users,
RTs_suspended: d.retweet_count_by_suspended_users,
QTs_suspended: d.quote_count_by_suspended_users,
Tweets_promoters: d.tweet_promoters,
RTs_promoters: d.retweet_promoters,
QTs_promoters: d.quote_promoters,
};
});