compare_players
Compare Fantasy Premier League players by selecting metrics, analyzing recent gameweeks, and evaluating upcoming fixtures to make informed decisions for your team.
Instructions
Compare multiple players across various metrics
Args:
player_names: List of player names to compare (2-5 players recommended)
metrics: List of metrics to compare
include_gameweeks: Whether to include gameweek-by-gameweek comparison
num_gameweeks: Number of recent gameweeks to include in comparison
include_fixture_analysis: Whether to include fixture analysis including blanks and doubles
Returns:
Detailed comparison of players across the specified metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_fixture_analysis | No | ||
include_gameweeks | No | ||
metrics | No | ||
num_gameweeks | No | ||
player_names | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_fixture_analysis": {
"default": true,
"title": "Include Fixture Analysis",
"type": "boolean"
},
"include_gameweeks": {
"default": false,
"title": "Include Gameweeks",
"type": "boolean"
},
"metrics": {
"default": [
"total_points",
"form",
"goals_scored",
"assists",
"bonus"
],
"items": {
"type": "string"
},
"title": "Metrics",
"type": "array"
},
"num_gameweeks": {
"default": 5,
"title": "Num Gameweeks",
"type": "integer"
},
"player_names": {
"items": {
"type": "string"
},
"title": "Player Names",
"type": "array"
}
},
"required": [
"player_names"
],
"title": "compare_playersArguments",
"type": "object"
}