Hi I am trying to read data of the World's powerfl brands from the link "http://www.forbes.com/powerful-brands/list/3/#tab:rank" into a data fame using R
I am a beginner so I tried using the following code to retrieve the data
library(XML)
library(RCurl)
# Read and parse HTML file
forbe = 'http://www.forbes.com/powerful-brands/list/#tab:rank'
data <- getURL('http://www.forbes.com/powerful-brands/list/#tab:rank')
data
htmldata <- readHTMLTable(data)
htmldata
Could anyone please help me in retrieving data from the webpage mentioned
