Make beautiful plots of player tracking data
Project description
ptplot
ptplot
makes it easy to turn player-tracking data into beautiful,
interactive visualizations — including animations! These visualizations can be used to guide
data exploration/analysis work, or to embed in webpages to share with
the world.
Installation
ptplot
can be installed via pip:
$ pip install ptplot
It is strongly recommended that you install ptplot
into a virtual
environment, such as with conda
:
[After installing conda]
$ conda create -n player_tracking python=3
$ conda activate player_tracking
$ pip install ptplot
You may wish to install some of ptplot
's dependencies
via conda, specifically pandas
and bokeh
:
[After installing conda]
$ conda create -n player_tracking python=3 pandas bokeh
$ conda activate player_tracking
$ pip install ptplot
Getting Started
Making your first plot can be as simple as
import pandas as pd
from bokeh.plotting import show
from ptplot import PTPlot
from ptplot.nfl import Field
from ptplot.plot import Positions
data = pd.read_csv("YOUR PLAYER TRACKING DATA")
plot = PTPlot(data) + Field() + Positions("X_COORDINATE_COLUMN", "Y_COORDINATE_COLUMN")
show(plot.draw())
For additional documentation and examples, check out the
notebooks in the notebooks/
directory, which can be viewed
online with all of the plots correctly rendered via nbviewer:
Additionally, layers within ptplot
have docstrings with
more usage details. Those can be accessed either by reading the
source code or running help([FUNCTION])
inside of Python.
Development Docs
See here
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ptplot-0.3.1.tar.gz
.
File metadata
- Download URL: ptplot-0.3.1.tar.gz
- Upload date:
- Size: 46.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d23b74bae59a217e37001fbcb3ef9a99b640e5c8dce504847f82697e46c149a |
|
MD5 | e4e5f0237022ab62a007951ea6f0778a |
|
BLAKE2b-256 | 0e121d256b20ebc15b6cb3101919e0a64326da0685b27394497b3468703b5eec |
File details
Details for the file ptplot-0.3.1-py2.py3-none-any.whl
.
File metadata
- Download URL: ptplot-0.3.1-py2.py3-none-any.whl
- Upload date:
- Size: 30.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 435f47e5ce8114eebcea51244d71be5aaf20fb841aac5120d75756c2985dbd43 |
|
MD5 | e65352e0261d44d2059006ac4d3681a4 |
|
BLAKE2b-256 | 59a8e88fedcdd34058fea9547b8cefbc275b9993e80d8f6145404f13007ad238 |