flightplans


Nameflightplans JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/erdogant/flightplans
SummaryPython package flightplans
upload_time2022-12-16 14:09:18
maintainer
docs_urlNone
authorErdogan Taskesen
requires_python>=3
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # flightplans

[![Python](https://img.shields.io/pypi/pyversions/flightplans)](https://img.shields.io/pypi/pyversions/flightplans)
[![Pypi](https://img.shields.io/pypi/v/flightplans)](https://pypi.org/project/flightplans/)
[![Docs](https://img.shields.io/badge/Sphinx-Docs-Green)](https://erdogant.github.io/flightplans/)
[![LOC](https://sloc.xyz/github/erdogant/flightplans/?category=code)](https://github.com/erdogant/flightplans/)
[![Downloads](https://static.pepy.tech/personalized-badge/flightplans?period=month&units=international_system&left_color=grey&right_color=brightgreen&left_text=PyPI%20downloads/month)](https://pepy.tech/project/flightplans)
[![Downloads](https://static.pepy.tech/personalized-badge/flightplans?period=total&units=international_system&left_color=grey&right_color=brightgreen&left_text=Downloads)](https://pepy.tech/project/flightplans)
[![License](https://img.shields.io/badge/license-GPL3-green.svg)](https://github.com/erdogant/flightplans/blob/master/LICENSE)
[![Forks](https://img.shields.io/github/forks/erdogant/flightplans.svg)](https://github.com/erdogant/flightplans/network)
[![Issues](https://img.shields.io/github/issues/erdogant/flightplans.svg)](https://github.com/erdogant/flightplans/issues)
[![Project Status](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![DOI](https://zenodo.org/badge/228166657.svg)](https://zenodo.org/badge/latestdoi/228166657)
[![Medium](https://img.shields.io/badge/Medium-Blog-green)](https://towardsdatascience.com/what-are-flightplans-loadings-and-biplots-9a7897f2e559)
[![Colab](https://colab.research.google.com/assets/colab-badge.svg?logo=github%20sponsors)](https://erdogant.github.io/flightplans/pages/html/Documentation.html#colab-notebook)
![GitHub Repo stars](https://img.shields.io/github/stars/erdogant/flightplans)
![GitHub repo size](https://img.shields.io/github/repo-size/erdogant/flightplans)
[![Donate](https://img.shields.io/badge/Support%20this%20project-grey.svg?logo=github%20sponsors)](https://erdogant.github.io/flightplans/pages/html/Documentation.html#)
<!---[![BuyMeCoffee](https://img.shields.io/badge/buymea-coffee-yellow.svg)](https://www.buymeacoffee.com/erdogant)-->
<!---[![Coffee](https://img.shields.io/badge/coffee-black-grey.svg)](https://erdogant.github.io/donate/?currency=USD&amount=5)-->





<!---[![BuyMeCoffee](https://img.shields.io/badge/buymea-coffee-yellow.svg)](https://www.buymeacoffee.com/erdogant)-->
<!---[![Coffee](https://img.shields.io/badge/coffee-black-grey.svg)](https://erdogant.github.io/donate/?currency=USD&amount=5)-->

* ``flightplans`` is Python package

# 
**Star this repo if you like it! ⭐️**
#


## Blog/Documentation

* [**flightplans documentation pages (Sphinx)**](https://erdogant.github.io/flightplans/)
* [**Notebook with examples**](https://colab.research.google.com/github/erdogant/flightplans/blob/master/notebooks/flightplans.ipynb)
* [**Read more details and usage about flightplans in this blog!**](https://towardsdatascience.com/flightplans)

* <a href="https://erdogant.github.io/flightplans/"> <img src="https://img.shields.io/badge/Sphinx-Docs-Green" alt="Open documentation pages"/> </a> flightplans documentation pages 
* <a href="https://colab.research.google.com/github/erdogant/flightplans/blob/master/notebooks/flightplans.ipynb"> <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open example In Colab"/> </a> Notebook example 
* <a href="https://towardsdatascience.com/a-step-by-step-guide-for-clustering-images-4b45f9906128"> <img src="https://img.shields.io/badge/Medium-Blog-blue" alt="Open Blog"/> </a> Blog: A step-by-step guide for clustering images 


### Contents
- [Installation](#-installation)
- [Contribute](#-contribute)
- [Citation](#-citation)
- [Maintainers](#-maintainers)
- [License](#-copyright)

### Installation
* Install flightplans from PyPI (recommended). flightplans is compatible with Python 3.6+ and runs on Linux, MacOS X and Windows. 
* A new environment can be created as following:

```bash
conda create -n env_flightplans python=3.8
conda activate env_flightplans
```

```bash
pip install flightplans            # normal install
pip install --upgrade flightplans # or update if needed
```

* Alternatively, you can install from the GitHub source:
```bash
# Directly install from github source
pip install -e git://github.com/erdogant/flightplans.git@0.1.0#egg=master
pip install git+https://github.com/erdogant/flightplans#egg=master
pip install git+https://github.com/erdogant/flightplans

# By cloning
git clone https://github.com/erdogant/flightplans.git
cd flightplans
pip install -U .
```  

#### Import flightplans package
```python
import flightplans as flightplans
```

#### Example:
```python
df = pd.read_csv('https://github.com/erdogant/hnet/blob/master/flightplans/data/example_data.csv')
model = flightplans.fit(df)
G = flightplans.plot(model)
```
<p align="center">
  <img src="https://github.com/erdogant/flightplans/blob/master/docs/figs/fig1.png" width="600" />
  
</p>


#### References
* https://github.com/erdogant/flightplans

#### Citation
Please cite in your publications if this is useful for your research (see citation).
   
### Maintainers
* Erdogan Taskesen, github: [erdogant](https://github.com/erdogant)

### Contribute
* All kinds of contributions are welcome!
* If you wish to buy me a <a href="https://www.buymeacoffee.com/erdogant">Coffee</a> for this work, it is very appreciated :)

### Licence
See [LICENSE](LICENSE) for details.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/erdogant/flightplans",
    "name": "flightplans",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3",
    "maintainer_email": "",
    "keywords": "",
    "author": "Erdogan Taskesen",
    "author_email": "erdogant@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b5/90/2043403c70ab79b967854c8b87fc411053f42e017a61a65b57a12b67eda3/flightplans-0.1.0.tar.gz",
    "platform": null,
    "description": "# flightplans\n\n[![Python](https://img.shields.io/pypi/pyversions/flightplans)](https://img.shields.io/pypi/pyversions/flightplans)\n[![Pypi](https://img.shields.io/pypi/v/flightplans)](https://pypi.org/project/flightplans/)\n[![Docs](https://img.shields.io/badge/Sphinx-Docs-Green)](https://erdogant.github.io/flightplans/)\n[![LOC](https://sloc.xyz/github/erdogant/flightplans/?category=code)](https://github.com/erdogant/flightplans/)\n[![Downloads](https://static.pepy.tech/personalized-badge/flightplans?period=month&units=international_system&left_color=grey&right_color=brightgreen&left_text=PyPI%20downloads/month)](https://pepy.tech/project/flightplans)\n[![Downloads](https://static.pepy.tech/personalized-badge/flightplans?period=total&units=international_system&left_color=grey&right_color=brightgreen&left_text=Downloads)](https://pepy.tech/project/flightplans)\n[![License](https://img.shields.io/badge/license-GPL3-green.svg)](https://github.com/erdogant/flightplans/blob/master/LICENSE)\n[![Forks](https://img.shields.io/github/forks/erdogant/flightplans.svg)](https://github.com/erdogant/flightplans/network)\n[![Issues](https://img.shields.io/github/issues/erdogant/flightplans.svg)](https://github.com/erdogant/flightplans/issues)\n[![Project Status](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)\n[![DOI](https://zenodo.org/badge/228166657.svg)](https://zenodo.org/badge/latestdoi/228166657)\n[![Medium](https://img.shields.io/badge/Medium-Blog-green)](https://towardsdatascience.com/what-are-flightplans-loadings-and-biplots-9a7897f2e559)\n[![Colab](https://colab.research.google.com/assets/colab-badge.svg?logo=github%20sponsors)](https://erdogant.github.io/flightplans/pages/html/Documentation.html#colab-notebook)\n![GitHub Repo stars](https://img.shields.io/github/stars/erdogant/flightplans)\n![GitHub repo size](https://img.shields.io/github/repo-size/erdogant/flightplans)\n[![Donate](https://img.shields.io/badge/Support%20this%20project-grey.svg?logo=github%20sponsors)](https://erdogant.github.io/flightplans/pages/html/Documentation.html#)\n<!---[![BuyMeCoffee](https://img.shields.io/badge/buymea-coffee-yellow.svg)](https://www.buymeacoffee.com/erdogant)-->\n<!---[![Coffee](https://img.shields.io/badge/coffee-black-grey.svg)](https://erdogant.github.io/donate/?currency=USD&amount=5)-->\n\n\n\n\n\n<!---[![BuyMeCoffee](https://img.shields.io/badge/buymea-coffee-yellow.svg)](https://www.buymeacoffee.com/erdogant)-->\n<!---[![Coffee](https://img.shields.io/badge/coffee-black-grey.svg)](https://erdogant.github.io/donate/?currency=USD&amount=5)-->\n\n* ``flightplans`` is Python package\n\n# \n**Star this repo if you like it! \u2b50\ufe0f**\n#\n\n\n## Blog/Documentation\n\n* [**flightplans documentation pages (Sphinx)**](https://erdogant.github.io/flightplans/)\n* [**Notebook with examples**](https://colab.research.google.com/github/erdogant/flightplans/blob/master/notebooks/flightplans.ipynb)\n* [**Read more details and usage about flightplans in this blog!**](https://towardsdatascience.com/flightplans)\n\n* <a href=\"https://erdogant.github.io/flightplans/\"> <img src=\"https://img.shields.io/badge/Sphinx-Docs-Green\" alt=\"Open documentation pages\"/> </a> flightplans documentation pages \n* <a href=\"https://colab.research.google.com/github/erdogant/flightplans/blob/master/notebooks/flightplans.ipynb\"> <img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open example In Colab\"/> </a> Notebook example \n* <a href=\"https://towardsdatascience.com/a-step-by-step-guide-for-clustering-images-4b45f9906128\"> <img src=\"https://img.shields.io/badge/Medium-Blog-blue\" alt=\"Open Blog\"/> </a> Blog: A step-by-step guide for clustering images \n\n\n### Contents\n- [Installation](#-installation)\n- [Contribute](#-contribute)\n- [Citation](#-citation)\n- [Maintainers](#-maintainers)\n- [License](#-copyright)\n\n### Installation\n* Install flightplans from PyPI (recommended). flightplans is compatible with Python 3.6+ and runs on Linux, MacOS X and Windows. \n* A new environment can be created as following:\n\n```bash\nconda create -n env_flightplans python=3.8\nconda activate env_flightplans\n```\n\n```bash\npip install flightplans            # normal install\npip install --upgrade flightplans # or update if needed\n```\n\n* Alternatively, you can install from the GitHub source:\n```bash\n# Directly install from github source\npip install -e git://github.com/erdogant/flightplans.git@0.1.0#egg=master\npip install git+https://github.com/erdogant/flightplans#egg=master\npip install git+https://github.com/erdogant/flightplans\n\n# By cloning\ngit clone https://github.com/erdogant/flightplans.git\ncd flightplans\npip install -U .\n```  \n\n#### Import flightplans package\n```python\nimport flightplans as flightplans\n```\n\n#### Example:\n```python\ndf = pd.read_csv('https://github.com/erdogant/hnet/blob/master/flightplans/data/example_data.csv')\nmodel = flightplans.fit(df)\nG = flightplans.plot(model)\n```\n<p align=\"center\">\n  <img src=\"https://github.com/erdogant/flightplans/blob/master/docs/figs/fig1.png\" width=\"600\" />\n  \n</p>\n\n\n#### References\n* https://github.com/erdogant/flightplans\n\n#### Citation\nPlease cite in your publications if this is useful for your research (see citation).\n   \n### Maintainers\n* Erdogan Taskesen, github: [erdogant](https://github.com/erdogant)\n\n### Contribute\n* All kinds of contributions are welcome!\n* If you wish to buy me a <a href=\"https://www.buymeacoffee.com/erdogant\">Coffee</a> for this work, it is very appreciated :)\n\n### Licence\nSee [LICENSE](LICENSE) for details.\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python package flightplans",
    "version": "0.1.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "53d29c32a092b7ac01b4c73370645879",
                "sha256": "0203b7d04b277cb2764b3e499f99bc5e4e29e79ec10914c6cfff9acce922c9e6"
            },
            "downloads": -1,
            "filename": "flightplans-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "53d29c32a092b7ac01b4c73370645879",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3",
            "size": 19024,
            "upload_time": "2022-12-16T14:09:16",
            "upload_time_iso_8601": "2022-12-16T14:09:16.918723Z",
            "url": "https://files.pythonhosted.org/packages/1c/f5/a76b076d173eb1fa6fbf774c1d9381a07743cca7c1e516954c5a36ade6ea/flightplans-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5a4712bc7b14253b74d42a67db91cfa9",
                "sha256": "19e3390074dca59397179b2e9d61c312b750135f57798a0e7e604fb88fa72cb0"
            },
            "downloads": -1,
            "filename": "flightplans-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "5a4712bc7b14253b74d42a67db91cfa9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3",
            "size": 18888,
            "upload_time": "2022-12-16T14:09:18",
            "upload_time_iso_8601": "2022-12-16T14:09:18.553428Z",
            "url": "https://files.pythonhosted.org/packages/b5/90/2043403c70ab79b967854c8b87fc411053f42e017a61a65b57a12b67eda3/flightplans-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-16 14:09:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "erdogant",
    "github_project": "flightplans",
    "lcname": "flightplans"
}
        
Elapsed time: 0.06475s