Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #3883
| From | Karl Ratzsch <mail.kfr@gmx.net> |
|---|---|
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | Re: GNUPLOT |
| Date | 2018-02-20 17:09 +0100 |
| Organization | solani.org |
| Message-ID | <p6hh8m$n90$1@solani.org> (permalink) |
| References | <34106976-d0c3-4150-ab26-ed1a989f8e99@googlegroups.com> <f22e87a9-257e-4281-9d13-b0a73c745850@googlegroups.com> |
Am 20.02.2018 um 12:27 schrieb rehman.techgeophy@gmail.com: > so far I did. > > set xtics format "" > set x2tics > set yrange [250:0] reverse; > plot "plot1" axes x2y1 with lines > > able to get plot, Now i want to reduce unit distance between two values on either axis, so that my plot look less deviated > "deviated"? Not clear what you mean, but does this look like what you want? ========== unset xtics # remove xtics completely, otherwise you still get the tics set x2tics 1.0 # labeled x2tic every 1.0 units set ytics 25.0 # resp. 25.0 units # "reverse" only has an effect on autoscaled axes since gp 5.0 #set yrange [250:0] set yrange [*:*] reverse # i.e. this might me more useful plot (sin(x)+1)*125 axes x2y1 ============
Back to comp.graphics.apps.gnuplot | Previous | Next — Previous in thread | Find similar
GNUPLOT rehman.techgeophy@gmail.com - 2018-02-19 23:43 -0800
Re: GNUPLOT Karl Ratzsch <mail.kfr@gmx.net> - 2018-02-20 10:20 +0100
Re: GNUPLOT rehman.techgeophy@gmail.com - 2018-02-20 03:27 -0800
Re: GNUPLOT Karl Ratzsch <mail.kfr@gmx.net> - 2018-02-20 17:09 +0100
csiph-web