Importing website information to Matlab

1 vue (au cours des 30 derniers jours)
Erik Börgesson
Erik Börgesson le 30 Déc 2019
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

Réponses (1)

Jalaj Gambhir
Jalaj Gambhir le 3 Jan 2020
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 commentaires
Adam Danz
Adam Danz le 3 Jan 2020
There's a csv download link within the website - that would be the easiest approach IMO.
Patrick Gipper
Patrick Gipper le 5 Jan 2020
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);

Connectez-vous pour commenter.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by