This file is indexed.

/usr/share/doc/pyxplot/html/sect0084.html is in pyxplot-doc 0.9.2-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="generator" content="plasTeX" />
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<title>PyXPlot Users' Guide: Linked axes and galleries of plots</title>

<link href="sect0085.html" title="The replot command revisited" rel="next" />
<link href="ex-nanotubes.html" title="The construction of large multiplots" rel="prev" />
<link href="ch-vector_graphics.html" title="Producing vector graphics" rel="up" />
<link rel="stylesheet" href="styles/styles.css" />
</head>
<body>

<div class="navigation">
<table cellspacing="2" cellpadding="0" width="100%">
<tr>
<td><a href="ex-nanotubes.html" title="The construction of large multiplots"><img alt="Previous: The construction of large multiplots" border="0" src="icons/previous.gif" width="32" height="32" /></a></td>

<td><a href="ch-vector_graphics.html" title="Producing vector graphics"><img alt="Up: Producing vector graphics" border="0" src="icons/up.gif" width="32" height="32" /></a></td>

<td><a href="sect0085.html" title="The replot command revisited"><img alt="Next: The replot command revisited" border="0" src="icons/next.gif" width="32" height="32" /></a></td>

<td class="navtitle" align="center">PyXPlot Users' Guide</td>
<td><a href="index.html" title="Table of Contents"><img border="0" alt="" src="icons/contents.gif" width="32" height="32" /></a></td>

<td><a href="sect0288.html" title="Index"><img border="0" alt="" src="icons/index.gif" width="32" height="32" /></a></td>

<td><img border="0" alt="" src="icons/blank.gif" width="32" height="32" /></td>
</tr>
</table>
</div>

<div class="breadcrumbs">
<span>
<span>
<a href="index.html">PyXPlot Users' Guide</a> <b>:</b>
</span>

</span><span>
<span>
<a href="sect0056.html">Plotting and Vector Graphics</a> <b>:</b>
</span>

</span><span>
<span>
<a href="ch-vector_graphics.html">Producing vector graphics</a> <b>:</b>
</span>

</span><span>

<span>
<b class="current">Linked axes and galleries of plots</b>
</span>
</span>
<hr />
</div>

<div><h1 id="a0000000085">3.6 Linked axes and galleries of plots</h1>
<p>In the previous chapter (Section <a href="ex-cmbrtemp.html">1.8.9</a>), linked axes were introduced as a mechanism by which several axes on a single plot could be set to have the same range, or to be algebraically related to one another. Another common use for them is to make several plots on a multiplot canvas share common axes. Just as the following statement links two axes on a single plot to one another </p><pre>
set axis x2 linked x
</pre><p> axes on the current plot can be linked to those of previous plots which are already on the multiplot canvas using syntax of the form: </p><pre>
set axis x2 linked item 2 x
</pre><p>A common reason for doing this is to produce galleries of side-by-side plots. The following series of commands would produce a <img src="images/img-0569.png" alt="$2\times 2$" style="vertical-align:0px; 
                                     width:39px; 
                                     height:12px" class="math gen" /> grid of plots, with axes only labelled along the bottom and left sides of the grid: </p><p> <small class="footnotesize"><tt class="ttfamily">set multiplot</tt><br /><tt class="ttfamily">set nodisplay</tt><br /><tt class="ttfamily">width=5.4</tt><br /></small><br /><small class="footnotesize"><tt class="ttfamily">set width width</tt><br /><tt class="ttfamily">set xrange [0:23.999]</tt><br /><tt class="ttfamily">set yrange [0:0.11]</tt><br /><tt class="ttfamily">set nokey</tt><br /><tt class="ttfamily">set texthalign left</tt><br /><tt class="ttfamily">set textvalign center</tt><br /></small><br /><small class="footnotesize"><tt class="ttfamily"># Plot 1 (bottom left)</tt><br /><tt class="ttfamily">set xlabel "$x$"</tt><br /><tt class="ttfamily">set ylabel ""</tt><br /><tt class="ttfamily">set label 1 "(c) fsteps" at graph width*0.03 , graph width/goldenRatio*0.9</tt><br /><tt class="ttfamily">plot "barchart1.dat" with fsteps, "" with points</tt><br /></small><br /><small class="footnotesize"><tt class="ttfamily">set axis x linked item 1 x</tt><br /><tt class="ttfamily">set axis y linked item 1 y</tt><br /></small><br /><small class="footnotesize"><tt class="ttfamily"># Plot 2 (bottom right)</tt><br /><tt class="ttfamily">set origin 1*width, 0*width/goldenRatio</tt><br /><tt class="ttfamily">set yformat ""</tt><br /><tt class="ttfamily">set label 1 "(d) histeps" at graph width*0.03 , graph width/goldenRatio*0.9</tt><br /><tt class="ttfamily">plot "barchart1.dat" with histeps, "" with points</tt><br /></small><br /><small class="footnotesize"><tt class="ttfamily"># Plot 3 (top left)</tt><br /><tt class="ttfamily">set origin 0*width, 1*width/goldenRatio</tt><br /><tt class="ttfamily">set xformat "" ; set xlabel ""</tt><br /><tt class="ttfamily">unset yformat ; set ylabel texify("poissonPDF(x,18)")</tt><br /><tt class="ttfamily">set label 1 "(a) impulses" at graph width*0.03 , graph width/goldenRatio*0.9</tt><br /><tt class="ttfamily">plot "barchart1.dat" with impulses, "" with points</tt><br /></small><br /><small class="footnotesize"><tt class="ttfamily"># Plot 4 (top right)</tt><br /><tt class="ttfamily">set origin 1*width, 1*width/goldenRatio</tt><br /><tt class="ttfamily">set yformat "" ; set ylabel ""</tt><br /><tt class="ttfamily">set label 1 "(b) steps" at graph width*0.03 , graph width/goldenRatio*0.9</tt><br /><tt class="ttfamily">plot "barchart1.dat" with steps, "" with points</tt><br /></small><br /><small class="footnotesize"><tt class="ttfamily"># Now that we are finished preparing multiplot, turn display on</tt><br /><tt class="ttfamily">set display</tt><br /><tt class="ttfamily">refresh</tt> </small>  </p><p><center>
<img src="images/img-0571.png" alt="\includegraphics[width=\textwidth ]{examples/eps/ex_gallery}" style="width:" /></center> </p></div>

<div class="contents section-contents"><!--<strong>Subsections</strong>-->
<ul>
<li><a href="sect0085.html">3.6.1 The <tt class="tt">replot</tt> command revisited</a>
   
</li>



</ul>
</div>



<div class="navigation">
<table cellspacing="2" cellpadding="0" width="100%">
<tr>
<td><a href="ex-nanotubes.html" title="The construction of large multiplots"><img alt="Previous: The construction of large multiplots" border="0" src="icons/previous.gif" width="32" height="32" /></a></td>

<td><a href="ch-vector_graphics.html" title="Producing vector graphics"><img alt="Up: Producing vector graphics" border="0" src="icons/up.gif" width="32" height="32" /></a></td>

<td><a href="sect0085.html" title="The replot command revisited"><img alt="Next: The replot command revisited" border="0" src="icons/next.gif" width="32" height="32" /></a></td>

<td class="navtitle" align="center">PyXPlot Users' Guide</td>
<td><a href="index.html" title="Table of Contents"><img border="0" alt="" src="icons/contents.gif" width="32" height="32" /></a></td>

<td><a href="sect0288.html" title="Index"><img border="0" alt="" src="icons/index.gif" width="32" height="32" /></a></td>

<td><img border="0" alt="" src="icons/blank.gif" width="32" height="32" /></td>
</tr>
</table>
</div>

<script language="javascript" src="icons/imgadjust.js" type="text/javascript"></script>

</body>
</html>