Path: csiph.com!weretis.net!feeder6.news.weretis.net!feeder5.news.weretis.net!news.solani.org!.POSTED!not-for-mail From: Karl Ratzsch Newsgroups: comp.graphics.apps.gnuplot Subject: Re: Tics Date: Thu, 7 Jun 2018 13:29:01 +0200 Organization: solani.org Lines: 23 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Trace: solani.org 1528370942 23438 127.0.0.43 (7 Jun 2018 11:29:02 GMT) X-Complaints-To: abuse@news.solani.org NNTP-Posting-Date: Thu, 7 Jun 2018 11:29:02 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 In-Reply-To: Content-Language: de-DE-1901 X-User-ID: eJwNwoERwCAIBLCVAPlHxqGI+49gL8GissMJOu5PcSBuHwadLndVcSg9sfYOlFDNbnbNjsjzAAziEKs= Cancel-Lock: sha1:q25CRavNiBLFtueXMp384AyBJgU= Xref: csiph.com comp.graphics.apps.gnuplot:3960 Am 07.06.2018 um 11:43 schrieb au76666: > I have an x-axis spanning from 1 to 100 and points on a geometric > sequence along that. I plot using logscale x, and I get only three > tics, at 1, 10 and 100. How can I get more? I would like, e.g., > 1, 2, 5, 10, 20, 50, 100. "help set xtics" helps. You can alway add additional labels by set xr [1:100] set xtics add (1, 2, 5, 10, 20, 50, 100) The tics increment is treated as a multiplicator for logscale axes set xtics 2 What the minor increment does is not really documented, try set xtics 10,2 vs. set xtics 2,10