knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
The main purpose of rscrapps is to allow a user to easily search the Google Play Store for apps and scrape information from those apps' pages.
You can install the development version from GitHub with:
install.packages("devtools") devtools::install_github("stephaniereinders/rscrapps")
The function getDataForApps will search the Google Play Store for apps using the input search_term and scrape data from those apps' Google Play Store pages. The function also allows you to specify the number of apps to scrape using the input num_apps. To scrape all of the apps listed in the search results, use num_apps = "all".
library(rscrapps) getDataForApps(search_term = "steganography", num_apps = 5)
If you want to scrape the Google Play Store app page of a specific app, you can use the function getDataForSingleApp. The input is the url to the app's page on the Google Play Store.
getDataForSingleApp("https://play.google.com/store/apps/details?id=com.hulu.plus")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.