Metadata-Version: 2.1
Name: one-line
Version: 0.2.6
Summary: Make every step oneLine.
Home-page: https://github.com/clarenceehsu/oneLine
Author: Zeesain Tsui
Author-email: clarenceehsu@163.com
License: UNKNOWN
Description: # oneLine
        
        Make every step oneLine. 
        
        ## What is it?
        
        It's a personal code set for learning and researching on Data Science and Machine Learning. It contains advanced encapsulation of some libraries, designing to provide a simpler mode of operation and help people to simplify their codes concisely.
        
        > This library is a collection of code used for learning and analysis, and the content is not perfect for the time being.
        
        ## Installation
        
        You can install this module with command below:
        
        ```
        pip install one-line
        ```
        
        ## How to use it?
        
        Import module and dataset:
        
        ```python
        # import OneData, an extended DataFrame
        from oneline import OneData
        
        # input the data with address, and the format will be set automatically
        data = OneData('test.csv')
        ```
        
        You can also import data using Pandas:
        
        ```python
        import pandas as pd
        from oneline import OneData
        
        temp = pd.read_csv('test.csv')
        
        # a DataFrame type data is also acceptable
        data = OneData(temp)
        ```
        
        More example see also `test/test_EDA.py`.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
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
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
