Using The Fitzroy R Package In Python
Writing a reminder as I always forget how to import the fantastic fitzRoy R Package into my Python notebook using rpy2.
Here is the working code to do so:
import rpy2.robjects as robjects
from rpy2.robjects.packages import importr
utils = importr("utils")
install = utils.install_packages
install("fitzRoy")
fitzroy = importr("fitzRoy")
We can then use the following to extract player stats for the 2018 - 2019 seasons:
matches = robjects.r.seq(9514, 9927)
player_stats = fitzroy.get_footywire_stats(ids=matches)