diff --git a/tools/karoo_iris_plot.py b/tools/karoo_iris_plot.py index 83338cf..aa72f5a 100644 --- a/tools/karoo_iris_plot.py +++ b/tools/karoo_iris_plot.py @@ -1,6 +1,6 @@ # Karoo Iris Plot # by Kai Staats, MSc UCT / AIMS and Arun Kumar, PhD -# version 0.9.1.6 +# version 0.9.1.3 import sys import numpy as np @@ -9,14 +9,14 @@ import matplotlib.pyplot as mpl np.set_printoptions(linewidth = 320) # set the terminal to print 320 characters before line-wrapping in order to view Trees ''' -This is a functional, even if rudimentary script designed to help you visualise your 2D or 3D data against a function -generated by Karoo GP. The challenge comes with solving complex equations for a single variable such that you have a -plot-able function. If the algebra required is beyond your skills (or you forgot what you learned in high school), -tools such as Matlab may be of some assistance. If you desire to normalise your data in advance of using this script, -the Karoo GP normalisation script included in the karoo_gp/toos/ directory is very easy to use. +THIS SCRIPT IS NOT YET COMPLETE! -By default, this script plots a Karoo GP derived function against a scatter plot of one of the Iris datasets -included with this package: karoo_gp/files/Iris_dataset/data_IRIS_virginica-vs-setosa_3-col_PLOT.csv +This is a functional yet *not* complete script designed to help you visualise your 2D or 3D data against a +function generated by Karoo GP. The script currently uses a simple plot of evenly spaced data, not the real data from +the Iris dataset. + +Once complete, by default, this script will plot a Karoo GP derived function against a scatter plot of one of the Iris +datasets included with this package: karoo_gp/files/Iris_dataset/data_IRIS_virginica-vs-setosa_3-col_PLOT.csv If you are new to plotting, https://www.youtube.com/channel/UCfzlCWGWYyIQ0aLC5w48gBQ for a good plotting tutorial provides a good, visual tutorial, as do many, many other web and video based guides.