Metadata-Version: 2.4
Name: data-wrangling-python
Version: 0.0.1
Summary: A data wrangling package
Home-page: https://github.com/vanraak/data_wrangling
Author: Jeroen van Raak
Author-email: Jeroen van Raak <j.j.f.vanraak@uva.nl>
License: MIT
Project-URL: Homepage, https://github.com/vanraak/data_wrangling
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Time Shift

A simple Python utility to create lagged and lead variables for panel or time series data.

## Installation

```bash
pip install data_wrangling
```

## Usage

```python
from data_wrangling import time_shift

df_new = time_shift(variables=["sales", "price"], dataframe=df, id="firm", time="year", shift=1)
```
