pablobarbera / twitter_ideology

Estimating Ideological Positions with Twitter Data
GNU General Public License v2.0
212 stars 74 forks source link

Update 01-get-twitter-data.R #4

Closed williamsanger closed 9 years ago

williamsanger commented 9 years ago

line 23, correct me if I'm wrong, but shouldn't it be "us$screen_name" instead of "d$screen_name" ?

Original code line (23): accounts.left <- us$screen_name[tolower(d$screen_name) %in% tolower(accounts.done) == FALSE]

Suggested code line (23): accounts.left <- us$screen_name[tolower(us$screen_name) %in% tolower(accounts.done) == FALSE]

-Will

pablobarbera commented 9 years ago

Indeed, thanks! Please let me know if you run into any other issue :smile: