Importing website information to Matlab
이전 댓글 표시
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
답변 (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);
카테고리
도움말 센터 및 File Exchange에서 Web Services에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!