In this section we describe features for plotting graphs with tick marks and labels. Here is a simple example of how to plot a graph:
funct1.plot(pos=(x,5.*cos(2.*x)*exp(-0.2*x))) # plot
Importing from visual.graph makes available all Visual objects plus the graph plotting module. The graph is autoscaled to display all the data in the window.
A connected curve (gcurve) is just one of several kinds of graph plotting objects. Other options are disconnected dots (gdots), vertical bars (gvbars), horizontal bars (ghbars), and binned data displayed as vertical bars (ghistogram; see later discussion). When creating one of these objects, you can specify a color attribute. For gvbars and ghbars you can also specify a delta attribute, which specifies the width of the bar (the default is delta=1.).
You can plot more than one thing on the same graph:
funct2 = gvbars(delta=0.05, color=color.blue)
funct2.plot(pos=(x,4.*cos(0.5*x)*exp(-0.1*x))) # vbars
In a plot operation you can specify a different color to override the original setting:
When you create a gcurve, gdots, gvbars, or ghbars object, you can provide a list of points to be plotted, just as is the case with the ordinary curve object:
data = gdots(pos=points, color=color.blue)
This list option is available only when creating the gdots object.
Overall gdisplay options
You can establish a gdisplay to set the size, position, and title for the title bar of the graph window, specify titles for the x and y axes, and specify maximum values for each axis, before creating gcurve or other kind of graph plotting object:
title='N vs. t', xtitle='t', ytitle='N',
xmax=50., xmin=-20., ymax=5E3, ymin=-2E3,
foreground=color.black, background=color.white)
In this example, the graph window will be located at (0,0), with a size of 600 by 150 pixels, and the title bar will say 'N vs. t'. The graph will have a title 't' on the horizontal axis and 'N' on the vertical axis. Instead of autoscaling the graph to display all the data, the graph will have fixed limits. The horizontal axis will extend from -20. to +50., and the vertical axis will extend from -2000. to +5000. (xmin and ymin must be negative; xmax and ymax must be positive.) The foreground color (white by default) is black, and the background color (black by default) is white. If you simply say gdisplay(), the defaults are x=0, y=0, width=800, height=400, no titles, fully autoscaled.
Every gdisplay has the attribute display, so you can manipulate basic display aspects of the graphing window:
You can have more than one graph window: just create another gdisplay. By default, any graphing objects created following a gdisplay belong to that window. You can also specify which window a new object belongs to:
Histograms (sorted, binned data)
The purpose of ghistogram is to sort data into bins and display the distribution. Suppose you have a list of the ages of a group of people, such as [5, 37, 12, 21, 8, 63, 52, 75, 7]. You want to sort these data into bins 20 years wide and display the numbers in each bin in the form of vertical bars. The first bin (0 to 20) contains 4 people [5, 12, 8, 7], the second bin (20 to 40) contains 2 people [21, 37], the third bin (40 to 60) contains 1 person [52], and the fourth bin (60-80) contains 2 people [63, 75]. Here is how you could make this display:
.....
You specify a list (bins) into which data will be sorted. In the example given here, bins goes from 0 to 80 by 20's. By default, if you later say
the new distribution replaces the old one. If on the other hand you say
the new data are added to the old data.
If you say the following,
each plot operation will accumulate the data and average the accumulated data. The default is no accumulation and no averaging.
gdisplay vs. display