From 3d89d3f2220d913230c5c9a11425e323e90d172a Mon Sep 17 00:00:00 2001 From: cooperdff <87905806+cooperdff@users.noreply.github.com> Date: Fri, 30 Jul 2021 17:58:03 -0500 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 8314cb6..3bf2d8a 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ nfl_data_py is a Python library for interacting with NFL data sourced from nflfastR (https://github.com/nflverse/nflfastR-data/) and nfldata (https://github.com/nflverse/nfldata/). +Includes import functions for play-by-play data, weekly data, seasonal data, rosters, win totals, scoring lines, officials, draft picks, draft pick values, schedules, team descriptive info, combine results and id mappings across various sites. + ## Installation Use the package manager [pip](https://pip.pypa.io/en/stable/) to install nfl_data_py. @@ -115,6 +117,22 @@ Returns dataframe with schedule information for years specified years: required, list of years to pull data for (earliest available is 1999) +```python +nfl.import_combine_data(years, positions) +``` +Returns dataframe with combine results for years and positions specified + +years: optional, list or range of years to pull data from +positions: optional, list of positions to be pulled (standard format - WR/QB/RB/etc.) + +```python +nfl.import_ids(columns, ids) +``` +Returns dataframe with mapped ids for all players across most major NFL and fantasy football data platforms + +columns: optional, list of columns to return +ids: optional, list of ids to return + **Additional features** ```python nfl.clean_nfl_data(df)