TaurusLegend / ParallelCoords

Graphical User Interface for Parallel Coordinates using Matplotlib.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parallel Coordinates

Parallel Coordinates is a Python module to visualize multiobjective data using parallel coordinates.

Installation

Requirements

  • Python3
  • matplotlib
  • numpy

Manual Installation

You can use the module locally by copying the file parallelcoordinates.py into your program's directory. But if you want to be able to use this module globally copy the file to site-packages directory of your Python distribution.

Usage

from parallelcoordinates import ParallelCoordinates
import numpy as np

data = np.random.rand(100, 7)

graph = ParallelCoordinates(data)
graph.updateAlpha(0.25)

Output

alt text

Acknowledgements

This project was developed under Research Initiation Grant (DPA-20-710), which was financed by national funds through FCT – Foundation for Science and Technology, I.P., in the scope of project CISUC – UID/CEC/00326/2020.

License

GPLv3

About

Graphical User Interface for Parallel Coordinates using Matplotlib.

License:GNU General Public License v3.0


Languages

Language:Python 100.0%