Importing website information to Matlab
1 次查看(过去 30 天)
显示 更早的评论
Hello. How can I construct a function in order to obtain data from the following website: https://www.ultimatetennisstatistics.com/statsLeaders. As my function input, I want to type in the player names. And as output, I want to receive the Service Points Won (0<p<1) corresponding to the player name I type in as input.
Thank you, Erik
0 个评论
回答(1 个)
Jalaj Gambhir
2020-1-3
Hi,
A tedious way of doing it would be by using webread. This would return the HTML page source of the URL provided, which you can further extract your relevant information from. Other method would be to download the stats in a ‘.csv’ format from the website, individually for all the pages. You can then use these csv files to read the stats into a table.
For example:
Stats = readtable('StatisticsLeaders.csv')
You can access the names and values by: Stats.name and Stats.value.
2 个评论
Adam Danz
2020-1-3
There's a csv download link within the website - that would be the easiest approach IMO.
Patrick Gipper
2020-1-5
Getting the correct format for the url can be a challenge. You can use Chrome Developer tools to capture a few network html interactions from the target website to see the expected formatting. I did this to get the url shown below. Then use webread to place the url response into a struct in your workspace. Once you have the data it can be manipulated however you please.
url='https://www.ultimatetennisstatistics.com/statsLeadersTable?rowCount=-1&sort%5Bvalue%5D=desc&searchPhrase=&category=aces&season=&fromDate=&toDate=&level=&bestOf=&surface=&indoor=&speed=&round=&result=&tournamentId=&opponent=&countryId=&minEntries=&_=1578183759846';
Stats=webread(url);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!