Skip to main content

Python data visualisation

Project description

datavision

Python data visualisation

setup

sudo pip install datavision

qunti and zus lists

Qunti (群体, groups) are lists that act

  • as dictionaries that can contain duplicate keys and

  • as sets for the purposes of enabling set-like operations for qunti objects, such as symmetric difference, intersection and update operations.

Qunti are composed of multiple zu (组, group) objects.

qunti operations

In an update operation, one qunti is used to update another. Any zus in the updating qunti that are not in the updated qunti are appended to the updated qunti. Any zus that are in the updating qunti and the updated qunti replace the corresponding zus in the updated qunti.

The following example illustrates a qunti update operation in which an alpha zus is replaced and a delta zus is appended:

# example qunti update:
a = [['alpha', '10'], ['beta', '20'], ['gamma', '30'], ['gamma', '15']]
b = [['delta', '40'], ['alpha', '50']]
# update of a with b:
a = [['beta', '20'], ['gamma', '30'], ['gamma', '15'], ['delta', '40'], ['alpha', '50']]

The following example illustrates qunti symmetric difference, intersection and update operations. In the update operation, two old gamma zus are replaced by a single new gamma zu:

# example qunti symmetric difference, intersection and update:
a = [['alpha', '10'], ['beta', '20'], ['gamma', '30'], ['gamma', '15']]
b = [['delta', '40'], ['alpha', '50'], ['gamma', '25']]
# symmetric difference of a and b:
[['beta', '20'], ['delta', '40']]
# intersection of a and b:
[['alpha', '10'], ['gamma', '30'], ['gamma', '15'], ['alpha', '50'], ['gamma', '25']]
# update of a with b:
a = [['beta', '20'], ['delta', '40'], ['alpha', '50'], ['gamma', '25']]

data visualisation

Datavision provides utilities for data visualisation. It can visualise matrices as colormaps:

image0 image1 image2

It can visualise histograms:

It can visualise graphs and histograms in a terminal:

   │
   ┼+79.548                                                                 ○
   │
   │                                                                ○
   │
   │                                                        ○
   │
   │                                                ○
   ◽       ◽       ◽                       ○
   │                       ◽       ○
   │                       ○       ◽
───○┼──────○───────○───────────────────────◽────────────────────────────────┼───
   │ +0.046                                         ◽               +8.97638
   │
   │                                                        ◽
   │
   │                                                                ◽
   ┼-48.228
   │                                                                        ◽
   │
                         │
                         ┼+75503.2
                       ∘∘|∘
                      ∘||||∘
                      ||||||∘
                     ∘|||||||
                     ||||||||∘
                    ∘|||||||||
                    ||||||||||∘
                   ∘|||||||||||
                   |||||||||||∘
                  ∘||||||||||||
                  |||||||||||||∘
                  ||||||||||||||∘
                 ∘|||||||||||||||∘
                ∘|||||||||||||||||∘
               ∘|||||||||||||||||||∘
            ∘∘∘||||||||||┼+1603.2|||∘∘∘
──┼--------------------------------------------┼──
   -4.69099              │              +4.6147

It can plot all combinations of variables:

It can plot all parallel coordinates:

It can perform FFT:

It can graph time:

graphs

image3 image4 image5 image6 image7

databases

Datavision features some scripts for interacting with databases:

  • change_field_name_database_SQLite.py

  • duplicates_database_SQLite.py

  • view_database_SQLite.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

datavision-2017.4.24.1630.tar.gz (35.5 kB view details)

Uploaded Source

File details

Details for the file datavision-2017.4.24.1630.tar.gz.

File metadata

File hashes

Hashes for datavision-2017.4.24.1630.tar.gz
Algorithm Hash digest
SHA256 871a336a3c0c1eb18e28d4417c76eb8d42dc7ed4625bd846feaa7e824379eb21
MD5 a9d2a79bc29cf3264a5bb47f8c75fe20
BLAKE2b-256 ce0b48c0c9c66726f12794f6c2c1c2220f8dd90f61952a8a3bc0d500380427cd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page