- Notifications
You must be signed in to change notification settings - Fork4
📱 R Package to access iTunes App Store Ratings and Reviews 📱
NotificationsYou must be signed in to change notification settings
amrrs/itunesr
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The goal ofitunesr
is to help iOS App Developers access iTunes App Store Ratings and Reviews programmatically, since iTunes Connect doesn't provide this data straightforward.
# install itunesr directly from CRAN:install.packages("itunesr")# the development version from GitHub:# install.packages("devtools")devtools::install_github("amrrs/itunesr")
- jsonlite
- xml2
- lubridate
- curl
library(itunesr)getReviews(368677368,'us',1)
itunesr
can be loaded just like any other R-package withlibrary(itunesr)
.
Note: If you're trying this behind a Firewall, you might get:Error in open.connection(con, "rb") : Timeout was reached
To resolve this error, Please refer this link:Configuring R to Use an HTTP or HTTPS Proxy
library(itunesr)#Latest (Page 1) Uber Reviews for the Country: USuber_reviews<- getReviews(368677368,'us',1)#Displaying the column namesnames(uber_reviews)#Ratings count from the 50 Reviewstable(uber_reviews$Rating)
> library('itunesr')>#Latest (Page 1) Uber Reviews for Country: US>uber_reviews<- getReviews(368677368,'us',1)>#Displaying the column names> names(uber_reviews)[1]"Title""Author_URL""Author_Name""App_Version""Rating""Review""Date">#Ratings count from the 50 Reviews> table(uber_reviews$Rating)123451937417
>amazon_reviews<- getReviews("297606951","us",1)> library(tidyverse)>amazon_reviews %>% count(Rating)# A tibble: 5 x 2Ratingn<fct><int>1125228339444554
About
📱 R Package to access iTunes App Store Ratings and Reviews 📱
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Contributors2
Uh oh!
There was an error while loading.Please reload this page.