MLB Stats
get_statcast_pitcher_expected_stats
Retrieves expected stats based on quality of batted ball contact against in a given year. ARGUMENTS year: The year for which you wish to retrieve expected stats data. Format: YYYY. minPA: The minimum number of plate appearances against for each pitcher. If a player falls below this threshold, they will be excluded from the results. If no value is specified, only qualified pitchers will be returned. start_row: optional (defaults to None) : starting row index for truncating large results (0-based, inclusive) end_row: optional (defaults to None) : ending row index for truncating large results (0-based, exclusive) Use start_row and end_row to limit response size when dealing with large datasets.
Other tools also called get_statcast_pitcher_expected_stats?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"year": {
"type": "integer",
"title": "Year"
},
"minPA": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Minpa",
"default": null
},
"end_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "End Row",
"default": null
},
"start_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Start Row",
"default": null
}
}
}