Usage

Installation

From PyPi

Install pyTSPA using pip:

pip install pyTSPA-toolbox

From source

Clone the git repository:

git clone https://github.com/vargaheni05/pyTSPA-toolbox.git

Change directory to the cloned repository:

cd pyTSPA-toolbox

Install with pip:

pip install .

For validating the installation, check the version of the toolbox:

>>> import pyTSPA
>>> print(pyTSPA.__version__)
'0.1.1'

Example

The following code will load the specified match data file and display a basic profiling summary of the data.

>>> import pyTSPA
>>> df = pyTSPA.load_match_data("example.csv")
>>> print(pyTSPA.data_profiling(df))