Metadata-Version: 2.1
Name: tseuler
Version: 0.0.3.dev0
Summary: A library for Time-Series exploration, analysis & modelling.
Home-page: https://github.com/ag-ds-bubble/tseuler
Author: Achintya Gupta
Author-email: ag.ds.bubble@gmail.com
License: UNKNOWN
Description: <img style="float: right;" src="examples/logo_big.png"  width='100%'>
        
        # tseuler
        A library for Time Series exploration, analysis & modelling. This includes -
        
        
        As of now, this libray is in pre-alpha phase, i.e there is a lot of work still left before its first stable release.
        
        ### TSMAD - Time Series Mini Analysis DashBoard.
        Functionalities Include
        
            - A mini Dashboard for Time Series Analysis, with multiple variations to each kind of analysis
            
        
        ### TSSTATS - Time Series Statistical Functions
        Functionalities Include:
        
            - Entropy Calculations
            - Intervention Analysis (In Future)
        
        ## Example
        ****
        <img style="float: right;" src="examples/example_gif.gif"  width='100%'>
        
        ## Installation
        ****
        Installation 
        ```py
        pip install tseuler
        ```
        ## Usage
        ****
        - ### Instantiating a DashBoard
            
            ```py
            import pandas as pd
            from tseuler import TSMAD
            # Read the Time Series DataFrame
            df = pd.read_csv('TimeSeriesdata3.csv', index_col=0)
            # Create a DashBoard!
            tb = TSMAD(tsdata=df, data_desc='Temperature Data',
                              target_column = ['AverageTemperature'],
                              categorical_columns = ['Country', 'City'])
        
            ```
        
        
        ## Versions
        ****
        
        `tseuler` has been built upon:-
        
        - pandas
        - numpy
        - panel
        - altair
        - matplotlib
        - statsmodels
        
        <u>v0.0.1 : Original Package</u>
        - Added TSMAD
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
