You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New function to create a chart of the top n URLs shared within the collection of tweets.
# Top n URLs shared
# Based on sharing within the collection of tweets
results <-
dbGetQuery(con,
"SELECT tweet.id as `tweet_id`,
tweet.text as `text`,
url.url as `url`,
url.expanded_url as `expanded_url`,
url.display_url as `display_url`
FROM url
LEFT JOIN tweet ON url.source_id = tweet.id
WHERE source_type = 'tweet'
AND field = 'text';")
# Need to figure out why the same url appears several times within the same tweet_id
The text was updated successfully, but these errors were encountered:
New function to create a chart of the top n URLs shared within the collection of tweets.
The text was updated successfully, but these errors were encountered: