<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-1923</id>
	<title>Nabble - Gnuplot - User</title>
	<updated>2009-11-25T19:21:17Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Gnuplot---User-f1923.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Gnuplot---User-f1923.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26523855</id>
	<title>Re: could gnuplot provide some specific functions?</title>
	<published>2009-11-25T19:21:17Z</published>
	<updated>2009-11-25T19:21:17Z</updated>
	<author>
		<name>bsmile</name>
	</author>
	<content type="html">On Wed, Nov 25, 2009 at 5:27 PM, Thomas Sefzick &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26523855&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;t.sefzick@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; sure, the plot ranges are determined and are accessible via some
&lt;br&gt;&amp;gt; variables, e.g. GPVAL_Y_MIN, GPVAL_Y_MAX, a.s.o.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Thanks for the information, I don't know this ...
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; but, these variables are set after all functions/data are evaluated,
&lt;br&gt;&amp;gt; not before.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; otherwise it would be easy:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; plot &amp;quot;datafilename&amp;quot; using 1:2, \
&lt;br&gt;&amp;gt; &amp;quot;&amp;quot; using 3:\
&lt;br&gt;&amp;gt; (GPVAL_Y_MIN+0.5*(GPVAL_Y_MAX-GPVAL_Y_MIN)):\
&lt;br&gt;&amp;gt; (0.5*(GPVAL_Y_MAX-GPVAL_Y_MIN))
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; but this doesn't work, because at the time these variable are
&lt;br&gt;&amp;gt; used here, they are unset - because autoranging is done after
&lt;br&gt;&amp;gt; all functions/data are evaluated
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;See, since autoranging is done after all functions/data are evaluated, why
&lt;br&gt;not exclude the special case *,u 3:(?)(?),* &amp;nbsp;from evaluating the GPVAL
&lt;br&gt;parameters, which I don't think is a problem to realize, then the system
&lt;br&gt;automaticall assign the GPVAL_Y_MIN+0.5*(GPVAL_Y_MAX-GPVAL_Y_MIN) and
&lt;br&gt;0.5*(GPVAL_Y_MAX-GPVAL_Y_MIN) to the two question marks, and then return
&lt;br&gt;back to the normal path
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; you could do a dummy plot (set term dumb), where you plot
&lt;br&gt;&amp;gt;&amp;gt; everything except the vertical lines. this would set the axis ranges.
&lt;br&gt;&amp;gt;&amp;gt; and then you would do the real plot, this time with the (errorbars
&lt;br&gt;&amp;gt;&amp;gt; as) vertical lines:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; set term push
&lt;br&gt;&amp;gt;&amp;gt; set term dumb
&lt;br&gt;&amp;gt;&amp;gt; plot &amp;quot;datafilename&amp;quot; using 1:2
&lt;br&gt;&amp;gt;&amp;gt; set term pop
&lt;br&gt;&amp;gt;&amp;gt; plot &amp;quot;datafilename&amp;quot; using 1:2, \
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;&amp;quot; using 3:\
&lt;br&gt;&amp;gt;&amp;gt; (GPVAL_Y_MIN+0.5*(GPVAL_Y_MAX-GPVAL_Y_MIN)):\
&lt;br&gt;&amp;gt;&amp;gt; (0.5*(GPVAL_Y_MAX-GPVAL_Y_MIN)) with errorbars pointtype 0
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; bsmile wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Thanks, this should serve the purpose.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; But still if could the system automatically determine the range of the y
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; values, say
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; u 3:(?):(?), then system automatically determines ( ...y=? ...) = mean
&lt;br&gt;&amp;gt;&amp;gt; of
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; the y range in the other plots, or in default at 0, (...yerr=? ...) =
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; standard deviation of y values in the other plots, or in default at 1.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; it seems to me the above functionality is not hard to implement since
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; there
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; has been use of (), if there could be a check for ? during syntax
&lt;br&gt;&amp;gt;&amp;gt; sparse,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; then accumulate mean and/or std from other column of output. It seems to
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; me
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; adding this functionality does not interfere with other existing
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; functionalities ..
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; On Wed, Nov 25, 2009 at 4:24 AM, Thomas Sefzick
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26523855&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;t.sefzick@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; plot large errorbars:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; unset bars
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; set yrange [ ... give some reasonable values here ... ]
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; plot 'kkk' u 1:2 w l,'' u 3:(0):(1.e9) with errorbars pointtype 0
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; explanation:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; using 3:( ... middle of your y-interval ... ):( ... half errorbar
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; length, long enough to cover the whole y-range ...)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; bsmile wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; sure, but what I mean is to set up a special symbol to mimic a
&lt;br&gt;&amp;gt;&amp;gt; vertical
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; line, e.g.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; plot 'kkk' u 1:2 w l,'' u 3:(whatever) w l
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; I know that the third column has identical value say at 5, then I
&lt;br&gt;&amp;gt;&amp;gt; hope
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; the
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; whatever is the special symbol which draws a vertical line through
&lt;br&gt;&amp;gt;&amp;gt; x=5
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; within the range of column 2. Even if column 3 has dispersed data, if
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; whatever is used, it will still draw a vertical line through x_mean
&lt;br&gt;&amp;gt;&amp;gt; for
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; column 3.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Thanks,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; On Tue, Nov 24, 2009 at 3:03 PM, Thomas Sefzick
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26523855&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;t.sefzick@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; because a function assigns one (or no) y-value to a x-value.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; a vertical line can not be described by a function.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; bsmile wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; say, vertical line, which can draw a vertical line at specific x
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; position
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; automatically ranging through the plotted region? So far, vertical
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; lines
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; can be drawn, but have to be tricky, if not lengthy. Since gnuplot
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; is
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; famous for its convenience, why not introduce a simple function to
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; accomplish plotting vertical lines?
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; Sent from the Gnuplot - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; 30-Day
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; focus
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; on
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26523855&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; 30-Day
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; trial. Simplify your report design, integration and deployment - and
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; focus
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; on
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26523855&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26509658.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26509658.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Sent from the Gnuplot - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; 30-Day
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; focus
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; on
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26523855&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; 30-Day
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; trial. Simplify your report design, integration and deployment - and
&lt;br&gt;&amp;gt;&amp;gt; focus
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; on
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26523855&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26521375.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26521375.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Sent from the Gnuplot - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt;&amp;gt; 30-Day
&lt;br&gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus
&lt;br&gt;&amp;gt;&amp;gt; on
&lt;br&gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26523855&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26523855&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26523855.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26521375</id>
	<title>Re: could gnuplot provide some specific functions?</title>
	<published>2009-11-25T14:27:39Z</published>
	<updated>2009-11-25T14:27:39Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">sure, the plot ranges are determined and are accessible via some
&lt;br&gt;variables, e.g. GPVAL_Y_MIN, GPVAL_Y_MAX, a.s.o.
&lt;br&gt;&lt;br&gt;but, these variables are set after all functions/data are evaluated,
&lt;br&gt;not before.
&lt;br&gt;&lt;br&gt;otherwise it would be easy:
&lt;br&gt;&lt;br&gt;plot &amp;quot;datafilename&amp;quot; using 1:2, \
&lt;br&gt;&amp;quot;&amp;quot; using 3:\
&lt;br&gt;(GPVAL_Y_MIN+0.5*(GPVAL_Y_MAX-GPVAL_Y_MIN)):\
&lt;br&gt;(0.5*(GPVAL_Y_MAX-GPVAL_Y_MIN))
&lt;br&gt;&lt;br&gt;but this doesn't work, because at the time these variable are
&lt;br&gt;used here, they are unset - because autoranging is done after
&lt;br&gt;all functions/data are evaluated
&lt;br&gt;&lt;br&gt;you could do a dummy plot (set term dumb), where you plot
&lt;br&gt;everything except the vertical lines. this would set the axis ranges.
&lt;br&gt;and then you would do the real plot, this time with the (errorbars
&lt;br&gt;as) vertical lines:
&lt;br&gt;&lt;br&gt;set term push
&lt;br&gt;set term dumb
&lt;br&gt;plot &amp;quot;datafilename&amp;quot; using 1:2
&lt;br&gt;set term pop
&lt;br&gt;plot &amp;quot;datafilename&amp;quot; using 1:2, \
&lt;br&gt;&amp;quot;&amp;quot; using 3:\
&lt;br&gt;(GPVAL_Y_MIN+0.5*(GPVAL_Y_MAX-GPVAL_Y_MIN)):\
&lt;br&gt;(0.5*(GPVAL_Y_MAX-GPVAL_Y_MIN)) with errorbars pointtype 0
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;bsmile wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Thanks, this should serve the purpose.
&lt;br&gt;&lt;br&gt;But still if could the system automatically determine the range of the y
&lt;br&gt;values, say
&lt;br&gt;&lt;br&gt;u 3:(?):(?), then system automatically determines ( ...y=? ...) = mean of
&lt;br&gt;the y range in the other plots, or in default at 0, (...yerr=? ...) =
&lt;br&gt;standard deviation of y values in the other plots, or in default at 1.
&lt;br&gt;&lt;br&gt;it seems to me the above functionality is not hard to implement since there
&lt;br&gt;has been use of (), if there could be a check for ? during syntax sparse,
&lt;br&gt;then accumulate mean and/or std from other column of output. It seems to me
&lt;br&gt;adding this functionality does not interfere with other existing
&lt;br&gt;functionalities ..
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, Nov 25, 2009 at 4:24 AM, Thomas Sefzick &amp;lt;t.sefzick@fz-juelich.de&amp;gt;wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; plot large errorbars:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; unset bars
&lt;br&gt;&amp;gt; set yrange [ ... give some reasonable values here ... ]
&lt;br&gt;&amp;gt; plot 'kkk' u 1:2 w l,'' u 3:(0):(1.e9) with errorbars pointtype 0
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; explanation:
&lt;br&gt;&amp;gt; using 3:( ... middle of your y-interval ... ):( ... half errorbar
&lt;br&gt;&amp;gt; length, long enough to cover the whole y-range ...)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; bsmile wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; sure, but what I mean is to set up a special symbol to mimic a vertical
&lt;br&gt;&amp;gt; &amp;gt; line, e.g.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; plot 'kkk' u 1:2 w l,'' u 3:(whatever) w l
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I know that the third column has identical value say at 5, then I hope
&lt;br&gt;&amp;gt; the
&lt;br&gt;&amp;gt; &amp;gt; whatever is the special symbol which draws a vertical line through x=5
&lt;br&gt;&amp;gt; &amp;gt; within the range of column 2. Even if column 3 has dispersed data, if
&lt;br&gt;&amp;gt; &amp;gt; whatever is used, it will still draw a vertical line through x_mean for
&lt;br&gt;&amp;gt; &amp;gt; column 3.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Tue, Nov 24, 2009 at 3:03 PM, Thomas Sefzick
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;t.sefzick@fz-juelich.de&amp;gt;wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; because a function assigns one (or no) y-value to a x-value.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; a vertical line can not be described by a function.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; bsmile wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; say, vertical line, which can draw a vertical line at specific x
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; position
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; automatically ranging through the plotted region? So far, vertical
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; lines
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; can be drawn, but have to be tricky, if not lengthy. Since gnuplot is
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; famous for its convenience, why not introduce a simple function to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; accomplish plotting vertical lines?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Sent from the Gnuplot - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; 30-Day
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; focus
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; on
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt; &amp;gt; 30-Day
&lt;br&gt;&amp;gt; &amp;gt; trial. Simplify your report design, integration and deployment - and
&lt;br&gt;&amp;gt; focus
&lt;br&gt;&amp;gt; &amp;gt; on
&lt;br&gt;&amp;gt; &amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; &amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt; &amp;gt; Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26509658.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26509658.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Gnuplot - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus
&lt;br&gt;&amp;gt; on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt; Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26521375.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26520552</id>
	<title>Re: could gnuplot provide some specific functions?</title>
	<published>2009-11-25T13:23:40Z</published>
	<updated>2009-11-25T13:23:40Z</updated>
	<author>
		<name>bsmile</name>
	</author>
	<content type="html">Thanks, this should serve the purpose.
&lt;br&gt;&lt;br&gt;But still if could the system automatically determine the range of the y
&lt;br&gt;values, say
&lt;br&gt;&lt;br&gt;u 3:(?):(?), then system automatically determines ( ...y=? ...) = mean of
&lt;br&gt;the y range in the other plots, or in default at 0, (...yerr=? ...) =
&lt;br&gt;standard deviation of y values in the other plots, or in default at 1.
&lt;br&gt;&lt;br&gt;it seems to me the above functionality is not hard to implement since there
&lt;br&gt;has been use of (), if there could be a check for ? during syntax sparse,
&lt;br&gt;then accumulate mean and/or std from other column of output. It seems to me
&lt;br&gt;adding this functionality does not interfere with other existing
&lt;br&gt;functionalities ..
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, Nov 25, 2009 at 4:24 AM, Thomas Sefzick &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26520552&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;t.sefzick@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; plot large errorbars:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; unset bars
&lt;br&gt;&amp;gt; set yrange [ ... give some reasonable values here ... ]
&lt;br&gt;&amp;gt; plot 'kkk' u 1:2 w l,'' u 3:(0):(1.e9) with errorbars pointtype 0
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; explanation:
&lt;br&gt;&amp;gt; using 3:( ... middle of your y-interval ... ):( ... half errorbar
&lt;br&gt;&amp;gt; length, long enough to cover the whole y-range ...)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; bsmile wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; sure, but what I mean is to set up a special symbol to mimic a vertical
&lt;br&gt;&amp;gt; &amp;gt; line, e.g.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; plot 'kkk' u 1:2 w l,'' u 3:(whatever) w l
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I know that the third column has identical value say at 5, then I hope
&lt;br&gt;&amp;gt; the
&lt;br&gt;&amp;gt; &amp;gt; whatever is the special symbol which draws a vertical line through x=5
&lt;br&gt;&amp;gt; &amp;gt; within the range of column 2. Even if column 3 has dispersed data, if
&lt;br&gt;&amp;gt; &amp;gt; whatever is used, it will still draw a vertical line through x_mean for
&lt;br&gt;&amp;gt; &amp;gt; column 3.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Tue, Nov 24, 2009 at 3:03 PM, Thomas Sefzick
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26520552&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;t.sefzick@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; because a function assigns one (or no) y-value to a x-value.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; a vertical line can not be described by a function.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; bsmile wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; say, vertical line, which can draw a vertical line at specific x
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; position
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; automatically ranging through the plotted region? So far, vertical
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; lines
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; can be drawn, but have to be tricky, if not lengthy. Since gnuplot is
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; famous for its convenience, why not introduce a simple function to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; accomplish plotting vertical lines?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Sent from the Gnuplot - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; 30-Day
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; focus
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; on
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26520552&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt; &amp;gt; 30-Day
&lt;br&gt;&amp;gt; &amp;gt; trial. Simplify your report design, integration and deployment - and
&lt;br&gt;&amp;gt; focus
&lt;br&gt;&amp;gt; &amp;gt; on
&lt;br&gt;&amp;gt; &amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; &amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26520552&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26509658.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26509658.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Gnuplot - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus
&lt;br&gt;&amp;gt; on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26520552&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26520552&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26520552.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515321</id>
	<title>font sizes for keys?</title>
	<published>2009-11-25T08:01:30Z</published>
	<updated>2009-11-25T08:01:30Z</updated>
	<author>
		<name>jody.xha</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;How can i assign a font size to the keys (the legend in the upper right),
&lt;br&gt;that is different from the size used tow write the numbers on th axes
&lt;br&gt;and the labels?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thank You
&lt;br&gt;Jody
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515321&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/font-sizes-for-keys--tp26515321p26515321.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26514384</id>
	<title>Re: wgnuplot 4.3+ persistent processes</title>
	<published>2009-11-25T07:11:52Z</published>
	<updated>2009-11-25T07:11:52Z</updated>
	<author>
		<name>Don Tucker</name>
	</author>
	<content type="html">I tried this with a different terminal type (windows) instead of wxt, and did not see the same behavior, so perhaps it is a bug with the wxt terminal in windows. &amp;nbsp;I attempted other terminal types, but couldn't get any other ones to run with the 4.3 or 4.5 win32 binaries.
&lt;br&gt;&lt;br&gt;Don
&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Don Tucker wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hello, 
&lt;br&gt;&lt;br&gt;I have a program that spawns a wgnuplot process by: &amp;quot;wgnuplot datafile.gp -&amp;quot; in MS Windows. 
&lt;br&gt;&lt;br&gt;For version 4.2, the spawned wgnuplot process gets killed when the plot window is closed. &amp;nbsp;For version 4.3+ the plot window goes away, but the wgnuplot process sticks around. &amp;nbsp;This causes problems after a while as there end up being many wgnuplot processes running in the background. &amp;nbsp;Did something change between 4.2 and 4.3+ that would cause this behavior? &amp;nbsp;The only other difference is that I'm running the 4.3+ wgnuplot with a datafile.gp that adds the enhanced, size, and title arguments to the set term wxt command. 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/wgnuplot-4.3%2B-persistent-processes-tp26499941p26514384.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26509658</id>
	<title>Re: could gnuplot provide some specific functions?</title>
	<published>2009-11-25T01:24:10Z</published>
	<updated>2009-11-25T01:24:10Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">plot large errorbars:
&lt;br&gt;&lt;br&gt;unset bars
&lt;br&gt;set yrange [ ... give some reasonable values here ... ]
&lt;br&gt;plot 'kkk' u 1:2 w l,'' u 3:(0):(1.e9) with errorbars pointtype 0
&lt;br&gt;&lt;br&gt;explanation:
&lt;br&gt;using 3:( ... middle of your y-interval ... ):( ... half errorbar
&lt;br&gt;length, long enough to cover the whole y-range ...)
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;bsmile wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;sure, but what I mean is to set up a special symbol to mimic a vertical
&lt;br&gt;line, e.g.
&lt;br&gt;&lt;br&gt;plot 'kkk' u 1:2 w l,'' u 3:(whatever) w l
&lt;br&gt;&lt;br&gt;I know that the third column has identical value say at 5, then I hope the
&lt;br&gt;whatever is the special symbol which draws a vertical line through x=5
&lt;br&gt;within the range of column 2. Even if column 3 has dispersed data, if
&lt;br&gt;whatever is used, it will still draw a vertical line through x_mean for
&lt;br&gt;column 3.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 3:03 PM, Thomas Sefzick &amp;lt;t.sefzick@fz-juelich.de&amp;gt;wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; because a function assigns one (or no) y-value to a x-value.
&lt;br&gt;&amp;gt; a vertical line can not be described by a function.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; bsmile wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; say, vertical line, which can draw a vertical line at specific x position
&lt;br&gt;&amp;gt; &amp;gt; automatically ranging through the plotted region? So far, vertical lines
&lt;br&gt;&amp;gt; &amp;gt; can be drawn, but have to be tricky, if not lengthy. Since gnuplot is
&lt;br&gt;&amp;gt; &amp;gt; famous for its convenience, why not introduce a simple function to
&lt;br&gt;&amp;gt; &amp;gt; accomplish plotting vertical lines?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Gnuplot - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus
&lt;br&gt;&amp;gt; on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt; Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26509658.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26507316</id>
	<title>Re: could gnuplot provide some specific functions?</title>
	<published>2009-11-24T20:14:45Z</published>
	<updated>2009-11-24T20:14:45Z</updated>
	<author>
		<name>bsmile</name>
	</author>
	<content type="html">sure, but what I mean is to set up a special symbol to mimic a vertical
&lt;br&gt;line, e.g.
&lt;br&gt;&lt;br&gt;plot 'kkk' u 1:2 w l,'' u 3:(whatever) w l
&lt;br&gt;&lt;br&gt;I know that the third column has identical value say at 5, then I hope the
&lt;br&gt;whatever is the special symbol which draws a vertical line through x=5
&lt;br&gt;within the range of column 2. Even if column 3 has dispersed data, if
&lt;br&gt;whatever is used, it will still draw a vertical line through x_mean for
&lt;br&gt;column 3.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 3:03 PM, Thomas Sefzick &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26507316&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;t.sefzick@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; because a function assigns one (or no) y-value to a x-value.
&lt;br&gt;&amp;gt; a vertical line can not be described by a function.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; bsmile wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; say, vertical line, which can draw a vertical line at specific x position
&lt;br&gt;&amp;gt; &amp;gt; automatically ranging through the plotted region? So far, vertical lines
&lt;br&gt;&amp;gt; &amp;gt; can be drawn, but have to be tricky, if not lengthy. Since gnuplot is
&lt;br&gt;&amp;gt; &amp;gt; famous for its convenience, why not introduce a simple function to
&lt;br&gt;&amp;gt; &amp;gt; accomplish plotting vertical lines?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Gnuplot - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus
&lt;br&gt;&amp;gt; on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Gnuplot-info mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26507316&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26507316&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26507316.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26500366</id>
	<title>Re: could gnuplot provide some specific functions?</title>
	<published>2009-11-24T12:03:26Z</published>
	<updated>2009-11-24T12:03:26Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">because a function assigns one (or no) y-value to a x-value.
&lt;br&gt;a vertical line can not be described by a function.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;bsmile wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;say, vertical line, which can draw a vertical line at specific x position automatically ranging through the plotted region? So far, vertical lines can be drawn, but have to be tricky, if not lengthy. Since gnuplot is famous for its convenience, why not introduce a simple function to accomplish plotting vertical lines? 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500366.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26500089</id>
	<title>could gnuplot provide some specific functions?</title>
	<published>2009-11-24T11:45:28Z</published>
	<updated>2009-11-24T11:45:28Z</updated>
	<author>
		<name>bsmile</name>
	</author>
	<content type="html">say, vertical line, which can draw a vertical line at specific x position automatically ranging through the plotted region? So far, vertical lines can be drawn, but have to be tricky, if not lengthy. Since gnuplot is famous for its convenience, why not introduce a simple function to accomplish plotting vertical lines? </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/could-gnuplot-provide-some-specific-functions--tp26500089p26500089.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499954</id>
	<title>Re: Combining a 3D and a 2D splot with no surface</title>
	<published>2009-11-24T11:39:11Z</published>
	<updated>2009-11-24T11:39:11Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">set surface
&lt;br&gt;splot &amp;quot;results.dat&amp;quot; using ($2):($3):($1) with pm3d notitle, &amp;quot;line.dat&amp;quot; using 1:2:(0) with lines
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;mgraat wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi all,
&lt;br&gt;&lt;br&gt;I'm trying to combine the plotting of a heightmap (using contourlines) and
&lt;br&gt;a line.
&lt;br&gt;&lt;br&gt;The .plot file basically is as follows:
&lt;br&gt;&lt;br&gt;set size square
&lt;br&gt;set data style lines
&lt;br&gt;set pm3d at b interpolate 10,10
&lt;br&gt;set contour
&lt;br&gt;set cntrparam bspline
&lt;br&gt;set view map
&lt;br&gt;unset surface
&lt;br&gt;splot &amp;quot;results.dat&amp;quot; using ($2):($3):($1) notitle, &amp;quot;line.dat&amp;quot; using 1:2:(0)
&lt;br&gt;&lt;br&gt;The results.dat file contains X, Y and Z values, the line.dat file (which
&lt;br&gt;represent a line y = 2-x) only contains X and Y values, with the Z value,
&lt;br&gt;as you can see, set at a constant of 0.
&lt;br&gt;&lt;br&gt;I use 'unset surface' because otherwise a grid-like figure through the
&lt;br&gt;datapoints in results.dat will be plotted, which is very much undesirable
&lt;br&gt;in my case. However, this also means that the line represented by line.dat
&lt;br&gt;is not plotted. Is this in any way avoidable? That is, can I draw the line
&lt;br&gt;in line.dat without also having the plot the grid-like figure?
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;&lt;br&gt;Michiel
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Combining-a-3D-and-a-2D-splot-with-no-surface-tp26498165p26499954.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499941</id>
	<title>wgnuplot 4.3+ persistent processes</title>
	<published>2009-11-24T11:31:10Z</published>
	<updated>2009-11-24T11:31:10Z</updated>
	<author>
		<name>Don Tucker</name>
	</author>
	<content type="html">Hello, 
&lt;br&gt;&lt;br&gt;I have a program that spawns a wgnuplot process by: &amp;quot;wgnuplot datafile.gp -&amp;quot; in MS Windows. 
&lt;br&gt;&lt;br&gt;For version 4.2, the spawned wgnuplot process gets killed when the plot window is closed. &amp;nbsp;For version 4.3+ the plot window goes away, but the wgnuplot process sticks around. &amp;nbsp;This causes problems after a while as there end up being many wgnuplot processes running in the background. &amp;nbsp;Did something change between 4.2 and 4.3+ that would cause this behavior? &amp;nbsp;The only other difference is that I'm running the 4.3+ wgnuplot with a datafile.gp that adds the enhanced, size, and title arguments to the set term wxt command. </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/wgnuplot-4.3%2B-persistent-processes-tp26499941p26499941.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499939</id>
	<title>Re: plotting boxes</title>
	<published>2009-11-24T11:26:59Z</published>
	<updated>2009-11-24T11:26:59Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">set xrange [0:5]
&lt;br&gt;set yrange [0:5]
&lt;br&gt;set zrange [0:5]
&lt;br&gt;set xyplane at 0
&lt;br&gt;splot &amp;quot;datafile&amp;quot; using (1.+$1*3.):(1+$2*3.):(1.+$3*3.) with lines, \
&lt;br&gt;&amp;quot;&amp;quot; using ($1+2):($2+2):($3+2) with lines
&lt;br&gt;&lt;br&gt;datafile is:
&lt;br&gt;0 0 0
&lt;br&gt;1 0 0
&lt;br&gt;1 1 0
&lt;br&gt;0 1 0
&lt;br&gt;0 0 0
&lt;br&gt;&lt;br&gt;0 0 1
&lt;br&gt;1 0 1
&lt;br&gt;1 1 1
&lt;br&gt;0 1 1
&lt;br&gt;0 0 1
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;laephy wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hi everybody,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I want to plot two boxes with gnuplot in 3 Dimensions. One small box inside the
&lt;br&gt;big box.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Can someone help me? 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/plotting-boxes-tp26493994p26499939.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499909</id>
	<title>Re: xtics on the axis</title>
	<published>2009-11-24T10:18:44Z</published>
	<updated>2009-11-24T10:18:44Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">tics are drawn either in or out.
&lt;br&gt;but you may use the 2nd axes to get in/out tics:
&lt;br&gt;&lt;br&gt;gnuplot&amp;gt; set xtics mirror out
&lt;br&gt;gnuplot&amp;gt; set ytics mirror out
&lt;br&gt;gnuplot&amp;gt; set x2tics mirror in format &amp;quot;&amp;quot;
&lt;br&gt;gnuplot&amp;gt; set y2tics mirror in format &amp;quot;&amp;quot;
&lt;br&gt;gnuplot&amp;gt; plot sin(x)
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;sebv wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hello,
&lt;br&gt;&lt;br&gt;I'd like to put xtics on the axis. I used the option set xtics axis but the result is either IN or OUT. Is it possible to have the xtics IN and OUT (i.e. the xtics bars which goes up and down the xaxis?).
&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;Sébastien.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/xtics-on-the-axis-tp26485244p26499909.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499899</id>
	<title>Re: empty data sets</title>
	<published>2009-11-24T09:55:39Z</published>
	<updated>2009-11-24T09:55:39Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">where is the warning
&lt;br&gt;&amp;nbsp; &amp;nbsp;warning: Skipping data file with no valid points
&lt;br&gt;going, that gnuplot prints to stderr?
&lt;br&gt;does it cause the http-server or the cgi-script not to
&lt;br&gt;accept the plot?
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;stevecoh1 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;I have a dynamic script, fired by cgi that prints a graph. &amp;nbsp;Data is
&lt;br&gt;dynamically supplied by the script in two plots. &amp;nbsp;It is possible that
&lt;br&gt;either or both of the two plots might contain no data. &amp;nbsp;I just realized
&lt;br&gt;that when one of the two plots is empty no graph was being emitted at
&lt;br&gt;all, even though the other plot had data.
&lt;br&gt;&lt;br&gt;The plot command I used was:
&lt;br&gt;plot &amp;quot;-&amp;quot; u 1:2 ti &amp;quot;Weekday&amp;quot; w impulses, &amp;quot;-&amp;quot; u 1:2 ti &amp;quot;Weekend&amp;quot; w impulses
&lt;br&gt;&lt;a bunch of data target=&quot;_top&quot;&gt;&lt;br&gt;e
&lt;br&gt;e
&lt;br&gt;&lt;br&gt;I expected to see the Weekday series and not the Weekend, but instead
&lt;br&gt;saw nothing.
&lt;br&gt;&lt;br&gt;&lt;br&gt;It was easy enough to fix this in the script with if logic, but
&lt;br&gt;arguably, shouldn't I expect gnuplot to plot something if I give it
&lt;br&gt;something even if one of the series is blank?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;http://p.sf.net/sfu/bobj-july
&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;Gnuplot-info@lists.sourceforge.net
&lt;br&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/empty-data-sets-tp26499686p26499899.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499686</id>
	<title>empty data sets</title>
	<published>2009-11-24T09:06:11Z</published>
	<updated>2009-11-24T09:06:11Z</updated>
	<author>
		<name>stevecoh1</name>
	</author>
	<content type="html">I have a dynamic script, fired by cgi that prints a graph. &amp;nbsp;Data is
&lt;br&gt;dynamically supplied by the script in two plots. &amp;nbsp;It is possible that
&lt;br&gt;either or both of the two plots might contain no data. &amp;nbsp;I just realized
&lt;br&gt;that when one of the two plots is empty no graph was being emitted at
&lt;br&gt;all, even though the other plot had data.
&lt;br&gt;&lt;br&gt;The plot command I used was:
&lt;br&gt;plot &amp;quot;-&amp;quot; u 1:2 ti &amp;quot;Weekday&amp;quot; w impulses, &amp;quot;-&amp;quot; u 1:2 ti &amp;quot;Weekend&amp;quot; w impulses
&lt;br&gt;&amp;lt;a bunch of data&amp;gt;
&lt;br&gt;e
&lt;br&gt;e
&lt;br&gt;&lt;br&gt;I expected to see the Weekday series and not the Weekend, but instead
&lt;br&gt;saw nothing.
&lt;br&gt;&lt;br&gt;&lt;br&gt;It was easy enough to fix this in the script with if logic, but
&lt;br&gt;arguably, shouldn't I expect gnuplot to plot something if I give it
&lt;br&gt;something even if one of the series is blank?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499686&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/empty-data-sets-tp26499686p26499686.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26498554</id>
	<title>Re: set xrange from variable</title>
	<published>2009-11-24T08:41:34Z</published>
	<updated>2009-11-24T08:41:34Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">oh, sorry, that's a mistake, 07 *is* a valid octal
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;stevecoh1 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;07 is not valid octal?
&lt;br&gt;&lt;br&gt;Thomas Sefzick wrote:
&lt;br&gt;&amp;gt; and it will give an error message when %d is 07, 08, or 09
&lt;br&gt;&amp;gt; (because 0x is interpreted as an octal number).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/set-xrange-from-variable-tp26477602p26498554.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26498204</id>
	<title>Re: set xrange from variable</title>
	<published>2009-11-24T07:42:07Z</published>
	<updated>2009-11-24T07:42:07Z</updated>
	<author>
		<name>stevecoh1</name>
	</author>
	<content type="html">07 is not valid octal?
&lt;br&gt;&lt;br&gt;Thomas Sefzick wrote:
&lt;br&gt;&amp;gt; and it will give an error message when %d is 07, 08, or 09
&lt;br&gt;&amp;gt; (because 0x is interpreted as an octal number).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26498204&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/set-xrange-from-variable-tp26477602p26498204.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26498165</id>
	<title>Combining a 3D and a 2D splot with no surface</title>
	<published>2009-11-24T07:39:04Z</published>
	<updated>2009-11-24T07:39:04Z</updated>
	<author>
		<name>mgraat</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;I'm trying to combine the plotting of a heightmap (using contourlines) and
&lt;br&gt;a line.
&lt;br&gt;&lt;br&gt;The .plot file basically is as follows:
&lt;br&gt;&lt;br&gt;set size square
&lt;br&gt;set data style lines
&lt;br&gt;set pm3d at b interpolate 10,10
&lt;br&gt;set contour
&lt;br&gt;set cntrparam bspline
&lt;br&gt;set view map
&lt;br&gt;unset surface
&lt;br&gt;splot &amp;quot;results.dat&amp;quot; using ($2):($3):($1) notitle, &amp;quot;line.dat&amp;quot; using 1:2:(0)
&lt;br&gt;&lt;br&gt;The results.dat file contains X, Y and Z values, the line.dat file (which
&lt;br&gt;represent a line y = 2-x) only contains X and Y values, with the Z value,
&lt;br&gt;as you can see, set at a constant of 0.
&lt;br&gt;&lt;br&gt;I use 'unset surface' because otherwise a grid-like figure through the
&lt;br&gt;datapoints in results.dat will be plotted, which is very much undesirable
&lt;br&gt;in my case. However, this also means that the line represented by line.dat
&lt;br&gt;is not plotted. Is this in any way avoidable? That is, can I draw the line
&lt;br&gt;in line.dat without also having the plot the grid-like figure?
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;&lt;br&gt;Michiel
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26498165&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Combining-a-3D-and-a-2D-splot-with-no-surface-tp26498165p26498165.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26493994</id>
	<title>plotting boxes</title>
	<published>2009-11-24T03:03:38Z</published>
	<updated>2009-11-24T03:03:38Z</updated>
	<author>
		<name>laephy</name>
	</author>
	<content type="html">Hi everybody,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I want to plot two boxes with gnuplot in 3 Dimensions. One small box inside the
&lt;br&gt;big box.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Can someone help me? </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/plotting-boxes-tp26493994p26493994.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26492638</id>
	<title>GUI for Gnuplot?</title>
	<published>2009-11-24T01:10:50Z</published>
	<updated>2009-11-24T01:10:50Z</updated>
	<author>
		<name>Arp</name>
	</author>
	<content type="html">Hi!
&lt;br&gt;&lt;br&gt;I am using gnuplot for the first time and I am kind of lazy with all the typing just to get a graph :)
&lt;br&gt;Is there an extended gui or something like that, where one can just click the options on and off, and simply chose the diagram type by clicking?
&lt;br&gt;thx.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GUI-for-Gnuplot--tp26492638p26492638.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26485244</id>
	<title>xtics on the axis</title>
	<published>2009-11-23T12:28:17Z</published>
	<updated>2009-11-23T12:28:17Z</updated>
	<author>
		<name>sebv</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I'd like to put xtics on the axis. I used the option set xtics axis but the result is either IN or OUT. Is it possible to have the xtics IN and OUT (i.e. the xtics bars which goes up and down the xaxis?).
&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;Sébastien.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/xtics-on-the-axis-tp26485244p26485244.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26481739</id>
	<title>Re: set xrange from variable</title>
	<published>2009-11-23T08:46:17Z</published>
	<updated>2009-11-23T08:46:17Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;FlavioB wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;...
&lt;br&gt;Can you correct me if I'm wrong? It give 2009-11-01 because it evaluates
&lt;br&gt;the first piece of code up to &amp;quot;%Y&amp;quot;? And then it takes &amp;quot;-%m&amp;quot; and &amp;quot;-%d&amp;quot; as
&lt;br&gt;single numerical values?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
yes, and takes 2009-11-01 as a request to calculate the result.
&lt;br&gt;and it will give an error message when %d is 07, 08, or 09
&lt;br&gt;(because 0x is interpreted as an octal number).
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;FlavioB wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;&amp;gt; you need to make clear that you expect a string:
&lt;br&gt;&amp;gt; FIRST_DAY=system('date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; 
&lt;br&gt;&amp;gt; +%Y-%m-%d')
&lt;br&gt;&amp;gt; FIRST_DAY=&amp;quot;`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`&amp;quot;
&lt;br&gt;&lt;br&gt;Many many thanks, but as I'm curious and willing to learn some more:
&lt;br&gt;what's the &amp;quot;system&amp;quot; word standing for?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;a href=&quot;http://www.gnuplot.info/docs/node336.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnuplot.info/docs/node336.html&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnuplot.info/docs/node327.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnuplot.info/docs/node327.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;FlavioB wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;And how do I use double-quotes and/or single-quotes
&lt;br&gt;(like in your second example)?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
that's not so easy...
&lt;br&gt;the outer double quotes are needed to make clear that the
&lt;br&gt;result of the 'date' command is a string:
&lt;br&gt;&lt;br&gt;print `date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`
&lt;br&gt;1997
&lt;br&gt;print &amp;quot;`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`&amp;quot;
&lt;br&gt;2009-11-01
&lt;br&gt;&lt;br&gt;single quotes would not work here, because then the backquotes
&lt;br&gt;would not be interpreted (by gnuplot):
&lt;br&gt;&lt;br&gt;print '`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`'
&lt;br&gt;`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`
&lt;br&gt;&lt;br&gt;the double quotes inside the backquotes are essential, single
&lt;br&gt;quotes would work here (due to the expansions the shell
&lt;br&gt;does):
&lt;br&gt;&lt;br&gt;print &amp;quot;`date -d '-$(($(date +%d)-1)) days' +%Y-%m-%d`&amp;quot;
&lt;br&gt;date: invalid date `-$(($(date +%d)-1)) days'
&lt;br&gt;&lt;br&gt;obviously, the double quotes inside the backquotes are not
&lt;br&gt;interpreted as string delimiters by gnuplot, otherwise the
&lt;br&gt;string would end in between.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;FlavioB wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Thanks again and kind regards,
&lt;br&gt;Flavio Boniforti
&lt;br&gt;&lt;br&gt;PIRAMIDE INFORMATICA SAGL
&lt;br&gt;Via Ballerini 21
&lt;br&gt;6600 Locarno
&lt;br&gt;Switzerland
&lt;br&gt;Phone: +41 91 751 68 81
&lt;br&gt;Fax: +41 91 751 69 14
&lt;br&gt;URL: &lt;a href=&quot;http://www.piramide.ch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.piramide.ch&lt;/a&gt;&lt;br&gt;E-mail: flavio@piramide.ch 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/set-xrange-from-variable-tp26477602p26481739.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26479556</id>
	<title>Re: set xrange from variable</title>
	<published>2009-11-23T06:59:23Z</published>
	<updated>2009-11-23T06:59:23Z</updated>
	<author>
		<name>FlavioB</name>
	</author>
	<content type="html">Hallo Thomas,
&lt;br&gt;&lt;br&gt;&amp;gt; you get what you request ;-)
&lt;br&gt;&lt;br&gt;That's for sure, as we're talking about computers ;-)
&lt;br&gt;&lt;br&gt;&amp;gt; `date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d` gives
&lt;br&gt;&amp;gt; 2009-11-01
&lt;br&gt;&lt;br&gt;Can you correct me if I'm wrong? It give 2009-11-01 because it evaluates
&lt;br&gt;the first piece of code up to &amp;quot;%Y&amp;quot;? And then it takes &amp;quot;-%m&amp;quot; and &amp;quot;-%d&amp;quot; as
&lt;br&gt;single numerical values?
&lt;br&gt;&lt;br&gt;[cut]
&lt;br&gt;&lt;br&gt;&amp;gt; you need to make clear that you expect a string:
&lt;br&gt;&amp;gt; FIRST_DAY=system('date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; 
&lt;br&gt;&amp;gt; +%Y-%m-%d') FIRST_DAY=&amp;quot;`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`&amp;quot;
&lt;br&gt;&lt;br&gt;Many many thanks, but as I'm curious and willing to learn some more:
&lt;br&gt;what's the &amp;quot;system&amp;quot; word standing for?
&lt;br&gt;And how do I use double-quotes and/or single-quotes (like in your second
&lt;br&gt;example)?
&lt;br&gt;&lt;br&gt;Thanks again and kind regards,
&lt;br&gt;Flavio Boniforti
&lt;br&gt;&lt;br&gt;PIRAMIDE INFORMATICA SAGL
&lt;br&gt;Via Ballerini 21
&lt;br&gt;6600 Locarno
&lt;br&gt;Switzerland
&lt;br&gt;Phone: +41 91 751 68 81
&lt;br&gt;Fax: +41 91 751 69 14
&lt;br&gt;URL: &lt;a href=&quot;http://www.piramide.ch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.piramide.ch&lt;/a&gt;&lt;br&gt;E-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26479556&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flavio@...&lt;/a&gt; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26479556&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/set-xrange-from-variable-tp26477602p26479556.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26479233</id>
	<title>Re: set xrange from variable</title>
	<published>2009-11-23T06:40:00Z</published>
	<updated>2009-11-23T06:40:00Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">you get what you request ;-)
&lt;br&gt;&lt;br&gt;`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`
&lt;br&gt;gives
&lt;br&gt;2009-11-01
&lt;br&gt;&lt;br&gt;and
&lt;br&gt;&lt;br&gt;FIRST_DAY=2009-11-01
&lt;br&gt;is
&lt;br&gt;2009 - 11 - 1 = 1997
&lt;br&gt;&lt;br&gt;you need to make clear that you expect a string:
&lt;br&gt;FIRST_DAY=system('date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d')
&lt;br&gt;FIRST_DAY=&amp;quot;`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`&amp;quot;
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;FlavioB wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;&amp;gt; FIRST_DAY=`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d` 
&lt;br&gt;&amp;gt; LAST_DAY=`date -d &amp;quot;+1 month -$(date +%d) days&amp;quot; +%Y-%m-%d`
&lt;br&gt;&lt;br&gt;I just discovered that it doesn't assign correctly the value I want, in
&lt;br&gt;gnuplot:
&lt;br&gt;&lt;br&gt;gnuplot&amp;gt; FIRST_DAY=`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`
&lt;br&gt;gnuplot&amp;gt; print FIRST_DAY
&lt;br&gt;1997
&lt;br&gt;&lt;br&gt;While at the usual bash prompt I get:
&lt;br&gt;&lt;br&gt;storebox:~# date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d
&lt;br&gt;2009-11-01
&lt;br&gt;&lt;br&gt;How come?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Flavio Boniforti
&lt;br&gt;&lt;br&gt;PIRAMIDE INFORMATICA SAGL
&lt;br&gt;Via Ballerini 21
&lt;br&gt;6600 Locarno
&lt;br&gt;Switzerland
&lt;br&gt;Phone: +41 91 751 68 81
&lt;br&gt;Fax: +41 91 751 69 14
&lt;br&gt;URL: &lt;a href=&quot;http://www.piramide.ch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.piramide.ch&lt;/a&gt;&lt;br&gt;E-mail: flavio@piramide.ch 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/set-xrange-from-variable-tp26477602p26479233.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26478009</id>
	<title>Re: set xrange from variable</title>
	<published>2009-11-23T05:26:09Z</published>
	<updated>2009-11-23T05:26:09Z</updated>
	<author>
		<name>FlavioB</name>
	</author>
	<content type="html">&amp;gt; FIRST_DAY=`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d` 
&lt;br&gt;&amp;gt; LAST_DAY=`date -d &amp;quot;+1 month -$(date +%d) days&amp;quot; +%Y-%m-%d`
&lt;br&gt;&lt;br&gt;I just discovered that it doesn't assign correctly the value I want, in
&lt;br&gt;gnuplot:
&lt;br&gt;&lt;br&gt;gnuplot&amp;gt; FIRST_DAY=`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`
&lt;br&gt;gnuplot&amp;gt; print FIRST_DAY
&lt;br&gt;1997
&lt;br&gt;&lt;br&gt;While at the usual bash prompt I get:
&lt;br&gt;&lt;br&gt;storebox:~# date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d
&lt;br&gt;2009-11-01
&lt;br&gt;&lt;br&gt;How come?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Flavio Boniforti
&lt;br&gt;&lt;br&gt;PIRAMIDE INFORMATICA SAGL
&lt;br&gt;Via Ballerini 21
&lt;br&gt;6600 Locarno
&lt;br&gt;Switzerland
&lt;br&gt;Phone: +41 91 751 68 81
&lt;br&gt;Fax: +41 91 751 69 14
&lt;br&gt;URL: &lt;a href=&quot;http://www.piramide.ch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.piramide.ch&lt;/a&gt;&lt;br&gt;E-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26478009&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flavio@...&lt;/a&gt; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26478009&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/set-xrange-from-variable-tp26477602p26478009.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26477602</id>
	<title>set xrange from variable</title>
	<published>2009-11-23T04:57:08Z</published>
	<updated>2009-11-23T04:57:08Z</updated>
	<author>
		<name>FlavioB</name>
	</author>
	<content type="html">Hello everybody,
&lt;br&gt;&lt;br&gt;I'm still trying to make successfull use of variables in my gnuplot
&lt;br&gt;script, so I'm asking how it would be possible to do a &amp;quot;set xrange&amp;quot;
&lt;br&gt;using a variable.
&lt;br&gt;&lt;br&gt;I have following variables:
&lt;br&gt;&lt;br&gt;FIRST_DAY=`date -d &amp;quot;-$(($(date +%d)-1)) days&amp;quot; +%Y-%m-%d`
&lt;br&gt;LAST_DAY=`date -d &amp;quot;+1 month -$(date +%d) days&amp;quot; +%Y-%m-%d`
&lt;br&gt;&lt;br&gt;What I need to achieve is to set xrange in between the above two values.
&lt;br&gt;Today it should give:
&lt;br&gt;&lt;br&gt;set xrange = [2009-11-01:2009-11-30]
&lt;br&gt;&lt;br&gt;I tried with
&lt;br&gt;&lt;br&gt;set xrange = [FIRST_DAY:LAST_DAY]
&lt;br&gt;&lt;br&gt;but it doesn't work.
&lt;br&gt;&lt;br&gt;Any help will be appreciated!
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Flavio Boniforti
&lt;br&gt;&lt;br&gt;PIRAMIDE INFORMATICA SAGL
&lt;br&gt;Via Ballerini 21
&lt;br&gt;6600 Locarno
&lt;br&gt;Switzerland
&lt;br&gt;Phone: +41 91 751 68 81
&lt;br&gt;Fax: +41 91 751 69 14
&lt;br&gt;URL: &lt;a href=&quot;http://www.piramide.ch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.piramide.ch&lt;/a&gt;&lt;br&gt;E-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26477602&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flavio@...&lt;/a&gt; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26477602&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/set-xrange-from-variable-tp26477602p26477602.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26475604</id>
	<title>Re: Creating graphs from byte transfers and scheduling them</title>
	<published>2009-11-23T02:28:52Z</published>
	<updated>2009-11-23T02:28:52Z</updated>
	<author>
		<name>FlavioB</name>
	</author>
	<content type="html">Hallo Hans-Bernhard,
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; A) the graph should be generated *new* when the actual 
&lt;br&gt;&amp;gt; month is over 
&lt;br&gt;&amp;gt; &amp;gt; (I'd like to have different PNGs for each month);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; That's mainly between you and your data generation scripts to handle.
&lt;br&gt;&lt;br&gt;OK, I'll go for it after I have my gnuplot script working...
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; B) it should be schedulable, but I don't know how to put or pass 
&lt;br&gt;&amp;gt; &amp;gt; variables to the plot script
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; There are several approaches. &amp;nbsp;The basic choice is between 
&lt;br&gt;&amp;gt; parametrizing
&lt;br&gt;&amp;gt; &amp;nbsp; a canned gnuplot script from the outside using environment 
&lt;br&gt;&amp;gt; variables (`echo $VARIABLE` style), and modifying the script 
&lt;br&gt;&amp;gt; on the fly (HERE script or piping individual commands from 
&lt;br&gt;&amp;gt; another scripting language to gnuplot).
&lt;br&gt;&lt;br&gt;Well, actually I have played a bit with setting variables inside gnuplot and trying to concatenate them.
&lt;br&gt;&lt;br&gt;I succeeded in concatenating *string* variables:
&lt;br&gt;&lt;br&gt;gnuplot&amp;gt; VAR='polti'.'-'.`date +%Y`
&lt;br&gt;gnuplot&amp;gt; print VAR
&lt;br&gt;polti-2009
&lt;br&gt;gnuplot&amp;gt; VAR=VAR.'-'.`date +%m`
&lt;br&gt;gnuplot&amp;gt; print VAR
&lt;br&gt;polti-2009-11
&lt;br&gt;&lt;br&gt;I think playing with these sort of variable definitions, also will lead me to success... What do you think of this?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Flavio Boniforti
&lt;br&gt;&lt;br&gt;PIRAMIDE INFORMATICA SAGL
&lt;br&gt;Via Ballerini 21
&lt;br&gt;6600 Locarno
&lt;br&gt;Switzerland
&lt;br&gt;Phone: +41 91 751 68 81
&lt;br&gt;Fax: +41 91 751 69 14
&lt;br&gt;URL: &lt;a href=&quot;http://www.piramide.ch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.piramide.ch&lt;/a&gt;&lt;br&gt;E-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26475604&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flavio@...&lt;/a&gt; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26475604&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Creating-graphs-from-byte-transfers-and-scheduling-them-tp26440095p26475604.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26464170</id>
	<title>Re: plotting a not so easy function...</title>
	<published>2009-11-22T04:53:52Z</published>
	<updated>2009-11-22T04:53:52Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">f(x,y)=y&amp;lt;-abs(0.8*x-0.4)?100.*(y-x**2)**2+(1.-x)**2-200.:400.*(x**2-x*y+0.2*y**4)-1000.*sin(y**2-x**3)
&lt;br&gt;splot f(x,y)
&lt;br&gt;&lt;br&gt;see:
&lt;br&gt;&lt;a href=&quot;http://www.gnuplot.info/docs/node58.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnuplot.info/docs/node58.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Hugo Gagnon-4 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hello,
&lt;br&gt;I am relatively new to gnuplot and I would like your opinion on how to
&lt;br&gt;plot f(x1,x2) as follows:
&lt;br&gt;&lt;br&gt;b = -abs(0.8*x1 - .4)
&lt;br&gt;if (x2 &amp;lt; b) then
&lt;br&gt;f = 100*(x2 - x1^2)^2 + (1 - x1)^2 - 200
&lt;br&gt;else
&lt;br&gt;f = 400*(x1^2 - x1*x2 + .2*x2^4) - 1000*sin(x2^2 - x1^3)
&lt;br&gt;endif
&lt;br&gt;&lt;br&gt;Thank you,
&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; Hugo Gagnon
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/plotting-a-not-so-easy-function...-tp26462957p26464170.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26462957</id>
	<title>plotting a not so easy function...</title>
	<published>2009-11-21T21:32:58Z</published>
	<updated>2009-11-21T21:32:58Z</updated>
	<author>
		<name>Hugo Gagnon-4</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;I am relatively new to gnuplot and I would like your opinion on how to
&lt;br&gt;plot f(x1,x2) as follows:
&lt;br&gt;&lt;br&gt;b = -abs(0.8*x1 - .4)
&lt;br&gt;if (x2 &amp;lt; b) then
&lt;br&gt;f = 100*(x2 - x1^2)^2 + (1 - x1)^2 - 200
&lt;br&gt;else
&lt;br&gt;f = 400*(x1^2 - x1*x2 + .2*x2^4) - 1000*sin(x2^2 - x1^3)
&lt;br&gt;endif
&lt;br&gt;&lt;br&gt;Thank you,
&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; Hugo Gagnon
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26462957&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/plotting-a-not-so-easy-function...-tp26462957p26462957.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26461041</id>
	<title>Re: Creating graphs from byte transfers and scheduling them</title>
	<published>2009-11-21T14:20:34Z</published>
	<updated>2009-11-21T14:20:34Z</updated>
	<author>
		<name>Hans-Bernhard Bröker-2</name>
	</author>
	<content type="html">Boniforti Flavio wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; A) the graph should be generated *new* when the actual month is over
&lt;br&gt;&amp;gt; (I'd like to have different PNGs for each month);
&lt;br&gt;&lt;br&gt;That's mainly between you and your data generation scripts to handle.
&lt;br&gt;&lt;br&gt;&amp;gt; B) it should be schedulable, but I don't know how to put or pass
&lt;br&gt;&amp;gt; variables to the plot script
&lt;br&gt;&lt;br&gt;There are several approaches. &amp;nbsp;The basic choice is between parametrizing 
&lt;br&gt;&amp;nbsp; a canned gnuplot script from the outside using environment variables 
&lt;br&gt;(`echo $VARIABLE` style), and modifying the script on the fly (HERE 
&lt;br&gt;script or piping individual commands from another scripting language to 
&lt;br&gt;gnuplot).
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26461041&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Creating-graphs-from-byte-transfers-and-scheduling-them-tp26440095p26461041.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26445857</id>
	<title>Re: rowstacked with 60 columns: key pushes graph off page</title>
	<published>2009-11-20T08:06:30Z</published>
	<updated>2009-11-20T08:06:30Z</updated>
	<author>
		<name>Murray Cumming</name>
	</author>
	<content type="html">On Fri, 2009-11-20 at 07:54 -0800, Thomas Sefzick wrote:
&lt;br&gt;&amp;gt; increase the size of the postscript output:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; set terminal postscript enhanced color size 80cm,29.7cm
&lt;br&gt;&lt;br&gt;Thanks. Is there any generic way to make it &amp;quot;big enough&amp;quot;, or to know how
&lt;br&gt;much space would be needed?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26445857&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;murrayc@...&lt;/a&gt;
&lt;br&gt;www.murrayc.com
&lt;br&gt;www.openismus.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26445857&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/rowstacked-with-60-columns%3A-key-pushes-graph-off-page-tp26423434p26445857.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26443560</id>
	<title>Re: Histogram plots not working as inline data?</title>
	<published>2009-11-20T08:00:41Z</published>
	<updated>2009-11-20T08:00:41Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">each plot needs it's own data:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.gnuplot.info/docs/node131.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnuplot.info/docs/node131.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;stevecoh1 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;I am having trouble getting a histogram plot to work.
&lt;br&gt;&lt;br&gt;As an experiment I tried the following which is approximately similar to
&lt;br&gt;&amp;nbsp;my script&amp;quot;
&lt;br&gt;&lt;br&gt;Take the histogram4.gnu script from demos.
&lt;br&gt;Replace the &amp;quot;immigration.dat&amp;quot; file reference with &amp;quot;-&amp;quot; and copy the data
&lt;br&gt;inline data from immigration.dat into the script, resulting in the
&lt;br&gt;attached histograms4a.gnu.
&lt;br&gt;&lt;br&gt;The original script works fine. &amp;nbsp;The script with the inline data
&lt;br&gt;produces the following and a graph with only the first set plotted.
&lt;br&gt;This pattern is observed whether or not the final &amp;quot;e&amp;quot; line is present in
&lt;br&gt;the script. &amp;nbsp;What is happening here and how may it be fixed?
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;# set terminal png transparent nocrop enhanced font arial 8 size 500,350 
&lt;br&gt;# set output 'histograms.4.png'
&lt;br&gt;set bar 1.000000
&lt;br&gt;set boxwidth 0.75 absolute
&lt;br&gt;set style fill &amp;nbsp;solid 1.00 border -1
&lt;br&gt;set style rectangle back fc lt -3 fillstyle &amp;nbsp;solid 1.00 border -1
&lt;br&gt;set key outside right top vertical Left reverse enhanced autotitles columnhead nobox
&lt;br&gt;set key invert samplen 4 spacing 1 width 0 height 0 
&lt;br&gt;set style histogram rowstacked title &amp;nbsp;offset character 0, 0, 0
&lt;br&gt;set datafile missing '-'
&lt;br&gt;set style data histograms
&lt;br&gt;set xtics border in scale 1,0.5 nomirror rotate by -45 &amp;nbsp;offset character 0, 0, 0
&lt;br&gt;set xtics &amp;nbsp;norangelimit
&lt;br&gt;set xtics &amp;nbsp; (&amp;quot;1891-1900&amp;quot; 0.00000 -1, &amp;quot;1901-1910&amp;quot; 1.00000 -1, &amp;quot;1911-1920&amp;quot; 2.00000 -1, &amp;quot;1921-1930&amp;quot; 3.00000 -1, &amp;quot;1931-1940&amp;quot; 4.00000 -1, &amp;quot;1941-1950&amp;quot; 5.00000 -1, &amp;quot;1951-1960&amp;quot; 6.00000 -1, &amp;quot;1961-1970&amp;quot; 7.00000 -1)
&lt;br&gt;set title &amp;quot;US immigration from Europe by decade\nPlot as stacked histogram&amp;quot; 
&lt;br&gt;set rrange [ * : * ] noreverse nowriteback &amp;nbsp;# (currently [0.00000:10.0000] )
&lt;br&gt;set trange [ * : * ] noreverse nowriteback &amp;nbsp;# (currently [-5.00000:5.00000] )
&lt;br&gt;set urange [ * : * ] noreverse nowriteback &amp;nbsp;# (currently [-5.00000:5.00000] )
&lt;br&gt;set vrange [ * : * ] noreverse nowriteback &amp;nbsp;# (currently [-5.00000:5.00000] )
&lt;br&gt;set ylabel &amp;nbsp;offset character 0, 0, 0 font &amp;quot;&amp;quot; textcolor lt -1 rotate by 90
&lt;br&gt;set y2label &amp;nbsp;offset character 0, 0, 0 font &amp;quot;&amp;quot; textcolor lt -1 rotate by 90
&lt;br&gt;set yrange [ 0.00000 : 7.00000e+06 ] noreverse nowriteback
&lt;br&gt;set cblabel &amp;nbsp;offset character 0, 0, 0 font &amp;quot;&amp;quot; textcolor lt -1 rotate by 90
&lt;br&gt;set locale &amp;quot;C&amp;quot;
&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using 6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, '' using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using 17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;# IMMIGRATION BY REGION AND SELECTED COUNTRY OF LAST RESIDENCE
&lt;br&gt;#
&lt;br&gt;Region	Austria	Hungary	Belgium	Czechoslovakia	Denmark	France	Germany	Greece	Ireland	Italy	Netherlands	Norway	Sweden	Poland	Portugal	Romania	Soviet_Union	Spain	Switzerland	United_Kingdom	Yugoslavia	Other_Europe	TOTAL	
&lt;br&gt;1891-1900	234081	181288	18167	-	50231	30770	505152	15979	388416	651893	26758	95015	226266	96720	27508	12750	505290	8731	31179	271538	-	282	3378014	
&lt;br&gt;1901-1910	668209	808511	41635	-	65285	73379	341498	167519	339065	2045877	48262	190505	249534	-	69149	53008	1597306	27935	34922	525950	-	39945	7387494	
&lt;br&gt;1911-1920	453649	442693	33746	3426	41983	61897	143945	184201	146181	1109524	43718	66395	95074	4813	89732	13311	921201	68611	23091	341408	1888	31400	4321887	
&lt;br&gt;1921-1930	32868	30680	15846	102194	32430	49610	412202	51084	211234	455315	26948	68531	97249	227734	29994	67646	61742	28958	29676	339570	49064	42619	2463194	
&lt;br&gt;1931-1940	3563	7861	4817	14393	2559	12623	144058	9119	10973	68028	7150	4740	3960	17026	3329	3871	1370	3258	5512	31572	5835	11949	377566	
&lt;br&gt;1941-1950	24860	3469	12189	8347	5393	38809	226578	8973	19789	57661	14860	10100	10665	7571	7423	1076	571	2898	10547	139306	1576	8486	621147	
&lt;br&gt;1951-1960	67106	36637	18575	918	10984	51121	477765	47608	43362	185491	52277	22935	21697	9985	19588	1039	671	7894	17675	202824	8225	16350	1325727	
&lt;br&gt;1961-1970	20621	5401	9192	3273	9201	45237	190796	85969	32966	214111	30606	15484	17116	53539	76065	3531	2465	44659	18453	213822	20381	11604	1124492	
&lt;br&gt;e
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Histogram-plots-not-working-as-inline-data--tp26443503p26443560.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26443553</id>
	<title>Re: rowstacked with 60 columns: key pushes graph off page</title>
	<published>2009-11-20T07:54:02Z</published>
	<updated>2009-11-20T07:54:02Z</updated>
	<author>
		<name>Thomas Sefzick</name>
	</author>
	<content type="html">increase the size of the postscript output:
&lt;br&gt;&lt;br&gt;set terminal postscript enhanced color size 80cm,29.7cm
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Murray Cumming wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;I'm using gnuplot with &amp;quot;histogram rowstacked&amp;quot; to plot many columns from
&lt;br&gt;a data file. The column titles are quite long too. But the key (legend)
&lt;br&gt;is then too big for the page, and even pushes the graph off the page
&lt;br&gt;when I place the key outside the graph.
&lt;br&gt;&lt;br&gt;Is there any generic way to just get everything to scale down enough to
&lt;br&gt;fit on the page? I'm outputing to .ps, so I don't mind if people have to
&lt;br&gt;zoom in to actually read things.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Here's my whole set of commands.
&lt;br&gt;&lt;br&gt;set terminal postscript enhanced color
&lt;br&gt;set output 'massif_pretty.ps'
&lt;br&gt;set datafile separator '\t'
&lt;br&gt;set key autotitle columnheader
&lt;br&gt;set style data histogram
&lt;br&gt;set style histogram rowstacked
&lt;br&gt;set style fill solid border -1
&lt;br&gt;set xlabel 'Instructions (millions)'
&lt;br&gt;set ylabel 'Kilobytes (KiB)'
&lt;br&gt;set key outside bottom reverse
&lt;br&gt;set xtics nomirror rotate by 90
&lt;br&gt;set format x &amp;quot;%.0f&amp;quot;
&lt;br&gt;set ytics nomirror
&lt;br&gt;set format y &amp;quot;%.0fk&amp;quot;
&lt;br&gt;plot 'gnuplot.data' using using=2:xtic(1), '' using 2, '' using 3, ''
&lt;br&gt;using 4, '' using 5, '' using 6, '' using 7, '' using 8, '' using 9, ''
&lt;br&gt;using 10, '' using 11, '' using 12, '' using 13, '' using 14, '' using
&lt;br&gt;15, '' using 16, '' using 17, '' using 18, '' using 19, '' using 20, ''
&lt;br&gt;using 21, '' using 22, '' using 23, '' using 24, '' using 25, '' using
&lt;br&gt;26, '' using 27, '' using 28, '' using 29, '' using 30, '' using 31, ''
&lt;br&gt;using 32, '' using 33, '' using 34, '' using 35, '' using 36, '' using
&lt;br&gt;37, '' using 38, '' using 39, '' using 40, '' using 41, '' using 42, ''
&lt;br&gt;using 43, '' using 44, '' using 45, '' using 46, '' using 47, '' using
&lt;br&gt;48, '' using 49, '' using 50, '' using 51, '' using 52, '' using 53, ''
&lt;br&gt;using 54, '' using 55, '' using 56, '' using 57, '' using 58, '' using
&lt;br&gt;59
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;murrayc@murrayc.com
&lt;br&gt;www.murrayc.com
&lt;br&gt;www.openismus.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;Gnuplot-info@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/rowstacked-with-60-columns%3A-key-pushes-graph-off-page-tp26423434p26443553.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26443503</id>
	<title>Histogram plots not working as inline data?</title>
	<published>2009-11-20T05:40:46Z</published>
	<updated>2009-11-20T05:40:46Z</updated>
	<author>
		<name>stevecoh1</name>
	</author>
	<content type="html">I am having trouble getting a histogram plot to work.
&lt;br&gt;&lt;br&gt;As an experiment I tried the following which is approximately similar to
&lt;br&gt;&amp;nbsp;my script&amp;quot;
&lt;br&gt;&lt;br&gt;Take the histogram4.gnu script from demos.
&lt;br&gt;Replace the &amp;quot;immigration.dat&amp;quot; file reference with &amp;quot;-&amp;quot; and copy the data
&lt;br&gt;inline data from immigration.dat into the script, resulting in the
&lt;br&gt;attached histograms4a.gnu.
&lt;br&gt;&lt;br&gt;The original script works fine. &amp;nbsp;The script with the inline data
&lt;br&gt;produces the following and a graph with only the first set plotted.
&lt;br&gt;This pattern is observed whether or not the final &amp;quot;e&amp;quot; line is present in
&lt;br&gt;the script. &amp;nbsp;What is happening here and how may it be fixed?
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using
&lt;br&gt;6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, ''
&lt;br&gt;using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using
&lt;br&gt;17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^
&lt;br&gt;&amp;quot;histograms.4a.gnu&amp;quot;, line 37: warning: Skipping data file with no valid
&lt;br&gt;points
&lt;br&gt;&lt;br /&gt;# set terminal png transparent nocrop enhanced font arial 8 size 500,350 
&lt;br&gt;# set output 'histograms.4.png'
&lt;br&gt;set bar 1.000000
&lt;br&gt;set boxwidth 0.75 absolute
&lt;br&gt;set style fill &amp;nbsp;solid 1.00 border -1
&lt;br&gt;set style rectangle back fc lt -3 fillstyle &amp;nbsp;solid 1.00 border -1
&lt;br&gt;set key outside right top vertical Left reverse enhanced autotitles columnhead nobox
&lt;br&gt;set key invert samplen 4 spacing 1 width 0 height 0 
&lt;br&gt;set style histogram rowstacked title &amp;nbsp;offset character 0, 0, 0
&lt;br&gt;set datafile missing '-'
&lt;br&gt;set style data histograms
&lt;br&gt;set xtics border in scale 1,0.5 nomirror rotate by -45 &amp;nbsp;offset character 0, 0, 0
&lt;br&gt;set xtics &amp;nbsp;norangelimit
&lt;br&gt;set xtics &amp;nbsp; (&amp;quot;1891-1900&amp;quot; 0.00000 -1, &amp;quot;1901-1910&amp;quot; 1.00000 -1, &amp;quot;1911-1920&amp;quot; 2.00000 -1, &amp;quot;1921-1930&amp;quot; 3.00000 -1, &amp;quot;1931-1940&amp;quot; 4.00000 -1, &amp;quot;1941-1950&amp;quot; 5.00000 -1, &amp;quot;1951-1960&amp;quot; 6.00000 -1, &amp;quot;1961-1970&amp;quot; 7.00000 -1)
&lt;br&gt;set title &amp;quot;US immigration from Europe by decade\nPlot as stacked histogram&amp;quot; 
&lt;br&gt;set rrange [ * : * ] noreverse nowriteback &amp;nbsp;# (currently [0.00000:10.0000] )
&lt;br&gt;set trange [ * : * ] noreverse nowriteback &amp;nbsp;# (currently [-5.00000:5.00000] )
&lt;br&gt;set urange [ * : * ] noreverse nowriteback &amp;nbsp;# (currently [-5.00000:5.00000] )
&lt;br&gt;set vrange [ * : * ] noreverse nowriteback &amp;nbsp;# (currently [-5.00000:5.00000] )
&lt;br&gt;set ylabel &amp;nbsp;offset character 0, 0, 0 font &amp;quot;&amp;quot; textcolor lt -1 rotate by 90
&lt;br&gt;set y2label &amp;nbsp;offset character 0, 0, 0 font &amp;quot;&amp;quot; textcolor lt -1 rotate by 90
&lt;br&gt;set yrange [ 0.00000 : 7.00000e+06 ] noreverse nowriteback
&lt;br&gt;set cblabel &amp;nbsp;offset character 0, 0, 0 font &amp;quot;&amp;quot; textcolor lt -1 rotate by 90
&lt;br&gt;set locale &amp;quot;C&amp;quot;
&lt;br&gt;plot '-' using 2:xtic(1), '' using 3, '' using 4, '' using 5, '' using 6, '' using 7, '' using 8, '' using 9, '' using 10, '' using 11, '' using 12, '' using 13, '' using 14, '' using 15, '' using 16, '' using 17, '' using 18, '' using 19, '' using 20, '' using 21, '' using 22
&lt;br&gt;# IMMIGRATION BY REGION AND SELECTED COUNTRY OF LAST RESIDENCE
&lt;br&gt;#
&lt;br&gt;Region	Austria	Hungary	Belgium	Czechoslovakia	Denmark	France	Germany	Greece	Ireland	Italy	Netherlands	Norway	Sweden	Poland	Portugal	Romania	Soviet_Union	Spain	Switzerland	United_Kingdom	Yugoslavia	Other_Europe	TOTAL	
&lt;br&gt;1891-1900	234081	181288	18167	-	50231	30770	505152	15979	388416	651893	26758	95015	226266	96720	27508	12750	505290	8731	31179	271538	-	282	3378014	
&lt;br&gt;1901-1910	668209	808511	41635	-	65285	73379	341498	167519	339065	2045877	48262	190505	249534	-	69149	53008	1597306	27935	34922	525950	-	39945	7387494	
&lt;br&gt;1911-1920	453649	442693	33746	3426	41983	61897	143945	184201	146181	1109524	43718	66395	95074	4813	89732	13311	921201	68611	23091	341408	1888	31400	4321887	
&lt;br&gt;1921-1930	32868	30680	15846	102194	32430	49610	412202	51084	211234	455315	26948	68531	97249	227734	29994	67646	61742	28958	29676	339570	49064	42619	2463194	
&lt;br&gt;1931-1940	3563	7861	4817	14393	2559	12623	144058	9119	10973	68028	7150	4740	3960	17026	3329	3871	1370	3258	5512	31572	5835	11949	377566	
&lt;br&gt;1941-1950	24860	3469	12189	8347	5393	38809	226578	8973	19789	57661	14860	10100	10665	7571	7423	1076	571	2898	10547	139306	1576	8486	621147	
&lt;br&gt;1951-1960	67106	36637	18575	918	10984	51121	477765	47608	43362	185491	52277	22935	21697	9985	19588	1039	671	7894	17675	202824	8225	16350	1325727	
&lt;br&gt;1961-1970	20621	5401	9192	3273	9201	45237	190796	85969	32966	214111	30606	15484	17116	53539	76065	3531	2465	44659	18453	213822	20381	11604	1124492	
&lt;br&gt;e
&lt;br&gt;&lt;br&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26443503&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Histogram-plots-not-working-as-inline-data--tp26443503p26443503.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26440095</id>
	<title>Creating graphs from byte transfers and scheduling them</title>
	<published>2009-11-20T00:47:22Z</published>
	<updated>2009-11-20T00:47:22Z</updated>
	<author>
		<name>FlavioB</name>
	</author>
	<content type="html">Hello everybody.
&lt;br&gt;&lt;br&gt;I'm pretty new at gnuplot, but I already achieved my first result...
&lt;br&gt;(see: &lt;a href=&quot;http://yfrog.com/j8polti200911p&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://yfrog.com/j8polti200911p&lt;/a&gt;&amp;nbsp;)
&lt;br&gt;&lt;br&gt;Now, what I'm doing is to grab every night the total amount of traffic
&lt;br&gt;being sent/received via SSH between my server and a couple of different
&lt;br&gt;remote hosts. I achieved this via iptables, but I don't want to bother
&lt;br&gt;you all... The result of this data collection is like:
&lt;br&gt;&lt;br&gt;2009-11-16 &amp;nbsp; &amp;nbsp; &amp;nbsp;4296994550 &amp;nbsp; &amp;nbsp; &amp;nbsp;155016994
&lt;br&gt;2009-11-17 &amp;nbsp; &amp;nbsp; &amp;nbsp;6458167774 &amp;nbsp; &amp;nbsp; &amp;nbsp;228657538
&lt;br&gt;2009-11-18 &amp;nbsp; &amp;nbsp; &amp;nbsp;8776045950 &amp;nbsp; &amp;nbsp; &amp;nbsp;424622670
&lt;br&gt;&lt;br&gt;The columns represent date, bytes received, bytes sent.
&lt;br&gt;&lt;br&gt;I now would like to schedule a daily update of the graph you can see at
&lt;br&gt;the above URL, but also:
&lt;br&gt;&lt;br&gt;A) the graph should be generated *new* when the actual month is over
&lt;br&gt;(I'd like to have different PNGs for each month);
&lt;br&gt;B) it should be schedulable, but I don't know how to put or pass
&lt;br&gt;variables to the plot script
&lt;br&gt;&lt;br&gt;Here the plot script I'm using:
&lt;br&gt;&lt;br&gt;set term png
&lt;br&gt;set output 'polti-2009-11.png'
&lt;br&gt;set timestamp 'Ultimo aggiornamento: %d.%m.%Y' top
&lt;br&gt;set xdata time
&lt;br&gt;set timefmt '%Y-%m-%d'
&lt;br&gt;set xrange ['2009-11-01':'2009-11-30']
&lt;br&gt;set xlabel 'Data'
&lt;br&gt;set format x '%d.%m'
&lt;br&gt;set ylabel 'Bytes'
&lt;br&gt;set format y '%.0s %cb'
&lt;br&gt;set title 'Traffico'
&lt;br&gt;set key off
&lt;br&gt;set boxwidth 0.8 relative
&lt;br&gt;set style fill solid 1.0
&lt;br&gt;plot '2009-11-213.200.254.141.dat' using 1:2 with boxes fs solid,\
&lt;br&gt;'2009-11-213.200.254.141.dat' using 1:3 with boxes fs solid
&lt;br&gt;&lt;br&gt;Any help will be appreciated, thanks in advance!
&lt;br&gt;&lt;br&gt;Flavio Boniforti
&lt;br&gt;&lt;br&gt;PIRAMIDE INFORMATICA SAGL
&lt;br&gt;Via Ballerini 21
&lt;br&gt;6600 Locarno
&lt;br&gt;Switzerland
&lt;br&gt;Phone: +41 91 751 68 81
&lt;br&gt;Fax: +41 91 751 69 14
&lt;br&gt;URL: &lt;a href=&quot;http://www.piramide.ch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.piramide.ch&lt;/a&gt;&lt;br&gt;E-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440095&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flavio@...&lt;/a&gt; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnuplot-info mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440095&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnuplot-info@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-info&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Creating-graphs-from-byte-transfers-and-scheduling-them-tp26440095p26440095.html" />
</entry>

</feed>
