Path: csiph.com!feeder.erje.net!1.eu.feeder.erje.net!weretis.net!feeder4.news.weretis.net!feeder5.news.weretis.net!news.solani.org!.POSTED!not-for-mail From: Karl Ratzsch Newsgroups: comp.graphics.apps.gnuplot Subject: Re: GNUPLOT Date: Tue, 20 Feb 2018 17:09:57 +0100 Organization: solani.org Lines: 24 Message-ID: References: <34106976-d0c3-4150-ab26-ed1a989f8e99@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Trace: solani.org 1519142998 23840 eJwNysEBwCAIA8CVQAgJ61Rx/xHq+w5RXptZqMTFdakhWdudEExo4jxj7fXSdzI9IlfFDMkf66EPTQ== (20 Feb 2018 16:09:58 GMT) X-Complaints-To: abuse@news.solani.org NNTP-Posting-Date: Tue, 20 Feb 2018 16:09:58 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 Cancel-Lock: sha1:UCB29OaqB65eIHa6RkdGgzprmpc= X-NNTP-Posting-Host: eJwFwYEBwCAIA7CXxNIi52wg/59gQshU4aKcwxkuVqftixDGIjTw4x5sfVoXvQfH9GetdDwHyBAj Content-Language: de-DE-1901 X-User-ID: eJwFwYEBwDAEBMCVgvcYpyX2HyF3bhR2gE74+pas+988J7Km22ij/SWjBzhbF6I6ZdC8i3gVVRCx In-Reply-To: Xref: csiph.com comp.graphics.apps.gnuplot:3883 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 ============