Class ComparativeScatterPlot
Display a scatter-type plot comparing two different kinds of info.
Attributes;
o display_info -- a 2D list of the information we'll be outputting. Each
top level list is a different data type, and each data point is a two-tuple
of the coordinates of a point. So if you had two distributions of points,
it should look like:
display_info = [[(1, 2), (3, 4)],
[(5, 6), (7, 8)]]
if everything is just one set of points, display_info can look like:
display_info = [[(1, 2), (3, 4), (5, 6)]]
Method Summary |
|
__init__(self,
output_format)
|
|
draw_to_file (self,
output_file,
title)
Write the comparative plot to a file. |
draw_to_file(self,
output_file,
title)
Write the comparative plot to a file.
-
|