get_player_recent_results: Get a player's recent event results from SquashInfo

View source: R/get_player_recent_.R

get_player_recent_resultsR Documentation

Get a player's recent event results from SquashInfo

Description

Given the full name or rank of a player and the competition category, get_player_recent_results() returns the recent event results table for PSA ranked players.

Usage

get_player_recent_results(player = NULL, rank = NULL, category = NULL)

Arguments

player

character string of player name.

rank

single integer or vector of integers indicating the rank of the PSA player(s) to return.

category

character string indicating the competition category. Must be one of "both", "mens", or "womens".

Value

Tibble containing the player rank, player name, player's seeding, round reached, event name, event date, event location, and event tour.

Note

This function only returns results data from players ranked in the most recent PSA rankings table for Men's and Women's singles competitions. Recent results are limited to events that occurred within the current and previous calendar years.

References

http://www.squashinfo.com/

Examples


## Get Mohamed Elshorbagy's most recent results data
get_player_recent_results(player = "Mohamed Elshorbagy", category = "mens")

## Get Nour El Tayeb's recent results data
get_player_recent_results("El Tayeb", category = "womens")

## Get recent results data from the top two players in both Men's and Women's competitions
get_player_recent_results(rank = 1:2, category = "both")


squashinformr documentation built on May 10, 2022, 5:12 p.m.