Web scrapping in R through Google playstore
问题 I want to scrap data from google play store of several app's review in which i want. 1) name field 2) How much star they got 3) review they wrote This is the snap of the senerio #Loading the rvest package library('rvest') #Specifying the url for desired website to be scrapped url <- 'https://play.google.com/store/apps/details?id=com.phonegap.rxpal&hl=en_IN' #Reading the HTML code from the website webpage <- read_html(url) #Using CSS gradient_Selector to scrap the name section Name_data_html <