├── .gitignore ├── ChangeLog ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── count-tweets.R ├── estimate-ideology.R ├── extract-hashtags.R ├── extract-recent-tweets.R ├── extract-retweets.R ├── extract-tweets.R ├── format-facebook-date.R ├── format-twitter-date.R ├── get-followers.R ├── get-friends.R ├── get-geo.R ├── get-list.R ├── get-retweets.R ├── get-statuses.R ├── get-timeline.R ├── get-users-batch.R ├── get-users.R ├── ideology-plot.R ├── plot-tweets.R ├── search-tweets.R ├── search-users.R ├── smappR-package.R ├── traceplot-ideology.R ├── tweets-to-df.R ├── tweets-to-mongo.R ├── utils.R └── word-frequencies.R ├── README.md ├── data ├── posterior_samples.rdata └── refdata.rdata └── man ├── count.tweets.Rd ├── estimate.ideology.Rd ├── extract.hashtags.Rd ├── extract.recent.tweets.Rd ├── extract.retweets.Rd ├── extract.tweets.Rd ├── format.facebook.date.Rd ├── format.twitter.date.Rd ├── formatTwDate.Rd ├── getFollowers.Rd ├── getFriends.Rd ├── getGeo.Rd ├── getList.Rd ├── getRetweets.Rd ├── getStatuses.Rd ├── getTimeline.Rd ├── getUsers.Rd ├── getUsersBatch.Rd ├── ideology.plot.Rd ├── plot.tweets.Rd ├── posterior_samples.Rd ├── refdata.Rd ├── searchTweets.Rd ├── searchUsers.Rd ├── smapp-package.Rd ├── smappR-package.Rd ├── traceplot.Rd ├── traceplot.ideology.Rd ├── tweetsToDF.Rd ├── tweetsToMongo.Rd └── word.frequencies.Rd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/ChangeLog -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/count-tweets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/count-tweets.R -------------------------------------------------------------------------------- /R/estimate-ideology.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/estimate-ideology.R -------------------------------------------------------------------------------- /R/extract-hashtags.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/extract-hashtags.R -------------------------------------------------------------------------------- /R/extract-recent-tweets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/extract-recent-tweets.R -------------------------------------------------------------------------------- /R/extract-retweets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/extract-retweets.R -------------------------------------------------------------------------------- /R/extract-tweets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/extract-tweets.R -------------------------------------------------------------------------------- /R/format-facebook-date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/format-facebook-date.R -------------------------------------------------------------------------------- /R/format-twitter-date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/format-twitter-date.R -------------------------------------------------------------------------------- /R/get-followers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/get-followers.R -------------------------------------------------------------------------------- /R/get-friends.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/get-friends.R -------------------------------------------------------------------------------- /R/get-geo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/get-geo.R -------------------------------------------------------------------------------- /R/get-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/get-list.R -------------------------------------------------------------------------------- /R/get-retweets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/get-retweets.R -------------------------------------------------------------------------------- /R/get-statuses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/get-statuses.R -------------------------------------------------------------------------------- /R/get-timeline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/get-timeline.R -------------------------------------------------------------------------------- /R/get-users-batch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/get-users-batch.R -------------------------------------------------------------------------------- /R/get-users.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/get-users.R -------------------------------------------------------------------------------- /R/ideology-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/ideology-plot.R -------------------------------------------------------------------------------- /R/plot-tweets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/plot-tweets.R -------------------------------------------------------------------------------- /R/search-tweets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/search-tweets.R -------------------------------------------------------------------------------- /R/search-users.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/search-users.R -------------------------------------------------------------------------------- /R/smappR-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/smappR-package.R -------------------------------------------------------------------------------- /R/traceplot-ideology.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/traceplot-ideology.R -------------------------------------------------------------------------------- /R/tweets-to-df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/tweets-to-df.R -------------------------------------------------------------------------------- /R/tweets-to-mongo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/tweets-to-mongo.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/word-frequencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/R/word-frequencies.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/README.md -------------------------------------------------------------------------------- /data/posterior_samples.rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/data/posterior_samples.rdata -------------------------------------------------------------------------------- /data/refdata.rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/data/refdata.rdata -------------------------------------------------------------------------------- /man/count.tweets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/count.tweets.Rd -------------------------------------------------------------------------------- /man/estimate.ideology.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/estimate.ideology.Rd -------------------------------------------------------------------------------- /man/extract.hashtags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/extract.hashtags.Rd -------------------------------------------------------------------------------- /man/extract.recent.tweets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/extract.recent.tweets.Rd -------------------------------------------------------------------------------- /man/extract.retweets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/extract.retweets.Rd -------------------------------------------------------------------------------- /man/extract.tweets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/extract.tweets.Rd -------------------------------------------------------------------------------- /man/format.facebook.date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/format.facebook.date.Rd -------------------------------------------------------------------------------- /man/format.twitter.date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/format.twitter.date.Rd -------------------------------------------------------------------------------- /man/formatTwDate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/formatTwDate.Rd -------------------------------------------------------------------------------- /man/getFollowers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/getFollowers.Rd -------------------------------------------------------------------------------- /man/getFriends.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/getFriends.Rd -------------------------------------------------------------------------------- /man/getGeo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/getGeo.Rd -------------------------------------------------------------------------------- /man/getList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/getList.Rd -------------------------------------------------------------------------------- /man/getRetweets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/getRetweets.Rd -------------------------------------------------------------------------------- /man/getStatuses.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/getStatuses.Rd -------------------------------------------------------------------------------- /man/getTimeline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/getTimeline.Rd -------------------------------------------------------------------------------- /man/getUsers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/getUsers.Rd -------------------------------------------------------------------------------- /man/getUsersBatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/getUsersBatch.Rd -------------------------------------------------------------------------------- /man/ideology.plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/ideology.plot.Rd -------------------------------------------------------------------------------- /man/plot.tweets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/plot.tweets.Rd -------------------------------------------------------------------------------- /man/posterior_samples.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/posterior_samples.Rd -------------------------------------------------------------------------------- /man/refdata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/refdata.Rd -------------------------------------------------------------------------------- /man/searchTweets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/searchTweets.Rd -------------------------------------------------------------------------------- /man/searchUsers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/searchUsers.Rd -------------------------------------------------------------------------------- /man/smapp-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/smapp-package.Rd -------------------------------------------------------------------------------- /man/smappR-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/smappR-package.Rd -------------------------------------------------------------------------------- /man/traceplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/traceplot.Rd -------------------------------------------------------------------------------- /man/traceplot.ideology.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/traceplot.ideology.Rd -------------------------------------------------------------------------------- /man/tweetsToDF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/tweetsToDF.Rd -------------------------------------------------------------------------------- /man/tweetsToMongo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/tweetsToMongo.Rd -------------------------------------------------------------------------------- /man/word.frequencies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAPPNYU/smappR/HEAD/man/word.frequencies.Rd --------------------------------------------------------------------------------