Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #4282
| From | Karl Ratzsch <mail.kfr@gmx.net> |
|---|---|
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | Re: How to generate series of plots programmatically? |
| Date | 2020-01-10 19:25 +0100 |
| Organization | solani.org |
| Message-ID | <qvafio$rae$1@solani.org> (permalink) |
| References | <qv80lr$n7k$1@dont-email.me> |
Several possibilities, check "help do", and "help plot for".
The range iteration is a bit tricky with "plot for" i think, the "do
for [] {}" loop has the disadvantage that you need to have a plot
already before iterating through you data with "replot". Try
generating an empty plot beforehand, e.g. via
plot 0 lc rgb "white" notitle
if necessary.
Karl
Am 09.01.2020 um 20:58 schrieb Henryk Nowicki:
> Hi, all!
>
> How to generate series of plots with exactly the same numbers of finance bars on the
> each plot?
>
> What I want interactively can be achievid with something like this:
>
> ....
> set xrange[0:100]
> replot
> set xrange[100:200]
> replot
> set xrange[200:300]
> replot
> set xrange[300:400]
> replot
> set xrange[400:500]
>
> etc. to the end of datafile
>
Back to comp.graphics.apps.gnuplot | Previous | Next — Previous in thread | Find similar
How to generate series of plots programmatically? Henryk Nowicki <"Henryk Nowicki"@doe.com> - 2020-01-09 19:58 +0000 Re: How to generate series of plots programmatically? Karl Ratzsch <mail.kfr@gmx.net> - 2020-01-10 19:25 +0100
csiph-web