https://github.com/shortthirdman/distributedlagmodels
Distributed Lag Models in Dynamic Model Time Series
https://github.com/shortthirdman/distributedlagmodels
disributed-log-models numpy pandas python statsmodels time-series
Last synced: 2 months ago
JSON representation
Distributed Lag Models in Dynamic Model Time Series
- Host: GitHub
- URL: https://github.com/shortthirdman/distributedlagmodels
- Owner: shortthirdman
- License: apache-2.0
- Created: 2025-03-24T09:01:09.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-24T13:36:05.000Z (about 1 year ago)
- Last Synced: 2025-03-24T14:31:50.719Z (about 1 year ago)
- Topics: disributed-log-models, numpy, pandas, python, statsmodels, time-series
- Language: Jupyter Notebook
- Homepage:
- Size: 252 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [Distributed Lag Models](https://medium.com/@kylejones_47003/distributed-lag-models-in-dynamic-model-time-series-ba66e3d1432a)
Distributed Lag Models in Dynamic Model Time Series
[](https://jupyter.org/try)   
---
## Development
- Create a Python virtual environment and activate
```shell
$ python -m venv dev
$ ./dev/Scripts/activate
$ export PIP_CONFIG_FILE=".\pip.conf"
```
- Install the packages and dependencies as listed in requirements file
```shell
$ python -m pip install --upgrade pip
$ pip install -U -r requirements.txt --no-cache-dir --disable-pip-version-check
```
- Start your development `Jupyter Notebook` or `Jupyter Lab` server
```shell
$ jupyter lab --notebook-dir=.\notebooks --no-browser
```
---