Metadata-Version: 2.1
Name: KubiosDataLoader
Version: 0.1.1
Summary: Importing text files from Kubios ECG data analysis
Home-page: https://github.com/MendyZaal/KubiosDataLoading
Author: Mendy Zaal
Author-email: mendyzaal@hotmail.com
License: gpl-3.0
Keywords: Kubios,dataloader,data-analysis
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: pandas

# Kubios Data Loading 
This package will allow users to import pre-analysed Kubios text files into python. 
This transforms the raw text file into a pandas data frame which can be used in further analysis or machine learning. 

## Usage 
import the package and with the final function of the class you will be able to extract all different segments of the 
kubios data-analysis in a dict. 

```python
from KubiosDataloader import KubiosDataLoading

data_loader = KubiosDataLoading(kubios_data = "filename.txt") #insert file location of the kubios text file
kubios_dict = data_loader.kubios_data_extraction() # returns dictionary with data frames of every section in the kubios file
```
## To do 
- Optimizing data frame sections besides the time-varying data frame
- Write more tests 

## License 
GNU GPLv3 

