Plot

From J Wiki
< Help(Redirected from Help/Primer/Plot)
Jump to navigation Jump to search


<=   =>

To use the plot facility you need to load it.

   load 'plot'


Try a simple plot.

   plot 5 10 23 45 8
Help-plot.gif</img>


The plot is in a separate window. Close the plot window to get rid of it.

Now that you can plot data, let's take a look at some of the primitives you were using in the previous section.

   plot 2 ^ i. 5
   plot ? 5 $ 100
   plot ? 50 $ 100
   plot ? 100 $ 100
   plot ? 1 + i. 50
   plot ? 1 + i. 100


A left argument customizes the plot.

   'TITLE myplot;TYPE bar' plot 2 ^ i. 5


Or try the sine values you calculated earlier.

   plot 1 o. i. 16  


There is a family of utilities defined in script trig.ijs you could make use of here. Use load to load that script.

   load 'trig'
   plot sin i. 16


To produce a finer plot you need to provide more results over a similar range.

   plot sin 0.2 * i.60
   plot cos 0.2 * i.60


<=   =>

Primer Index               Hover to reveal titles   -   Click to access   -   Current page is highlighted
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
45 46 47 48
50 51 52 53 54 55 56 57
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
97 98 99 100 101 102 103 104 105 106