Giter Club home page Giter Club logo

Comments (3)

tjburch avatar tjburch commented on August 26, 2024

All stat cast methods have home_team and away_team. You can use this with inning_topbot to create the column you want. An example:

In [1]: from pybaseball import  statcast_pitcher
   ...: import numpy as np
   ...: import pandas as pd

In [2]: data = statcast_pitcher("2016-04-01", "2017-07-15", player_id=519242)  # Chris Sale
Gathering Player Data

In [3]: data["player_team"] = np.where(data.inning_topbot == "Top", data.home_team, data.away_team)

In [4]: data.groupby("game_year")['player_team'].agg(pd.Series.mode)
Out[4]:
game_year
2016    CWS
2017    BOS
Name: player_team, dtype: object

from pybaseball.

tjburch avatar tjburch commented on August 26, 2024

@jrussek - is that sufficient for your use?

from pybaseball.

jrussek avatar jrussek commented on August 26, 2024

Hi @tjburch, apologies for the silence. Yes, that works wonderfully, thank you!

from pybaseball.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.