Implementation of ARIMA model (Auto Regressive Integrated Moving Average)
Project description
Raptor ARIMA Model Python API
- This API Supports to model time series data using box-jenkins model.
Python Installation:
- Command for installation: 'pip3 install raptorarima'
Usage
The ARIMA Model is an implementation from scratch which using MA, AR and differencing to model the Data.
Define the p,d,q parameters.
q = 1
d = 0
p = 3
m = ARIMA(q, d, p)
pred = m.fit_predict(x)
Installation
git clone https://github.com/swaroop9ai9/Fintech/raptor_arima_api.git
cd raptor arima
python setup.py install
Requirements
- pandas
- numpy
- random
Note
Make sure to use Time series Data Values.
Steps to create pip package
- Prepare directory with setup.py, packagename(apiname(init.py[with main code]),other py files which supports the init.py file.)
- Upload the package to Git
- cd packagename
- chmod +x apiname #makes it an executable
- python3 setup.py bdist_wheel [
- build: build package information.
- dist: Contains your .whl file. A WHL file is a package saved in the Wheel format, which is the standard built-package format used for Python distributions. You can directly install a .whl file using pip install some_package.whl on your system
- project.egg.info: An egg package contains compiled bytecode, package information, dependency links, and captures the info used by the setup.py test command when running tests.]
-
[Optional] to check install on local machine python -m pip install dist/packagename-0.1-py3-none-any.whl
-
python3 -m twine upload dist/* [in order to upload the package] (Will ask your username and password in pypi)
-
Login to pypi account to view the uploaded package
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file raptorarima-0.0.3-py3-none-any.whl.
File metadata
- Download URL: raptorarima-0.0.3-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c491f24f8092492882046460f7c1c4081993fa9a30283cd7c6ba4d8ff6c3e91
|
|
| MD5 |
2c03ce2d628afcabd2c389f657ea8188
|
|
| BLAKE2b-256 |
a21e79258bb69b209cd02d3295cebecbc60feec723fa824caf5b3b6d57b77d80
|