Files
Phoenix/wx/lib/plot
Per A. Brodtkorb 033c18fd9f Fixes issue #1556
Replaced XXX.keys() calls with idiomatic python 3 calls that are compatible with python 2 such as eg:
 * replaced "y = xxx.keys()" or "y = list(xxx.keys())" with just "y = list(xxx)"
 * replaced "sorted(xxx.keys())" or "sorted(list(xxx.keys()))" with just "sorted(xxx)"
 * replaced "if not A in B.keys():" with "if A not in B:"
 * replaced "for A in B.keys():"  with "for A in B:"

See also https://python-future.org/compatible_idioms.html
https://python-future.org/compatible_idioms.html#dict-keys-values-items-as-a-list
2020-03-20 18:51:19 +01:00
..
2017-02-26 14:15:49 +11:00
2019-11-14 12:22:45 -08:00
2020-03-20 18:51:19 +01:00
2016-07-07 09:13:18 -07:00

wx.lib.plot

A simple, light-weight plotting package for wxPython Phoenix.

Based on wxPlotCanvas Written by K. Hinsen, R. Srinivasan; Ported to wxPython: Harm van der Heijden, Feb 1999

This is a simple, light weight plotting module that can be used with Boa or easily integrated into your own wxPython application. The emphasis is on small size and fast plotting for large data sets. It has a reasonable number of features to do line and scatter graphs easily as well as simple bar graphs. It is not as sophisticated or as powerful as SciPy Plt or Chaco. Both of these are great packages but consume huge amounts of computer resources for simple plots. They can be found at http://scipy.com