You can also download or clone pyCreeper from GitHub: https://github.com/Elendurwen/pyCreeper
Installing pyCreeper is very easy and mostly simply means extracting the zip file and putting the contents into a location of your choice. Have a look at the Readme file on GitHub to find out what dependencies you need and how to include pyCreeper in your project.
Using pyCreeper? Let me know and I will feature your project here!
Version history¶
2.1 (NEW!)¶
- New plot type: Bar plot (see Bar plot examples)
- Bar and line plot legends can have optional titles (see
examples.barPlots.example2_errorBars()
) - Box plot width can now be specified using the
pyCreeper.crGraphStyle.boxPlotWidth()
property - Plot legends are semi-transparent to allow seeing data points underneath
- Better automatic detection of which x-axis tick to show
- Plot range and size bug fixes
2.0¶
- Properly encapsulated plot styles! Tutorial: Using styles
- Reading text files into 2D arrays with a new module
pyCreeper.crFiles
- New functions in
pyCreeper.crData
: - Add and remove unique list elements with
pyCreeper.crData.addUniqueElementToList()
andpyCreeper.crData.removeElementFromList()
- Extract data from a specific list column:
pyCreeper.crData.getListColumnAsArray()
- Get the average value in a list:
pyCreeper.crData.getAverageOfAList()
- Add and remove unique list elements with
- New functions in
- Minor bug fixes
1.1¶
- Tutorial: Broken line plots
- New functions in
pyCreeper.crData
: - Compress a list into a shorter lists:
pyCreeper.crData.compressList()
- Flip columns and rows of 2D arrays:
pyCreeper.crData.getListByFlippingColumnsAndRows()
- Get median of a list and optionally ignore 0-values:
pyCreeper.crData.getMedianOfAList()
- Compress a list into a shorter lists:
- New functions in
- Better automatic detection of y-axis range y-ticks for plots
- Better styling of box plots
- Minor bug fixes
1.0¶
Basic plot types:
- Line and box plots (see Line and box plot examples)
- Matrix plots (see Matrix plot examples)
- Pie charts (see Pie chart examples)
Basic functions in pyCreeper.crData
: