From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: Plotting date on xaxis Date: Wed, 24 Feb 2010 08:07:48 +0000 Message-ID: <87wry3kqej.wl%ucecesf@ucl.ac.uk> References: <417457b51002221031k48e2470aof86f6b6e71ea454b@mail.gmail.com> <87zl30c6zn.fsf@gmail.com> <87vddntvig.wl%ucecesf@ucl.ac.uk> <87ljejsdk6.fsf@gmail.com> Reply-To: Eric S Fraga Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NkDJg-00052D-IK for emacs-orgmode@gnu.org; Wed, 24 Feb 2010 04:14:00 -0500 Received: from [140.186.70.92] (port=44790 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NkDJf-00051d-AO for emacs-orgmode@gnu.org; Wed, 24 Feb 2010 04:13:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NkDJd-0000sC-RR for emacs-orgmode@gnu.org; Wed, 24 Feb 2010 04:13:59 -0500 Received: from vscane-c.ucl.ac.uk ([144.82.108.43]:58352) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NkCHj-0007eC-Gk for emacs-orgmode@gnu.org; Wed, 24 Feb 2010 03:07:55 -0500 In-Reply-To: <87ljejsdk6.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eric Schulte Cc: emacs-orgmode@gnu.org On Tue, 23 Feb 2010 17:05:45 -0700, "Eric Schulte" wrote: > > Eric S Fraga writes: > > [...] > > > > I have narrowed down what causes the problem although I don't > > understand why (I haven't had any time to look at the elisp code). > > Basically, the problem with Johan's initial table was the extra empty > > row at the end: > > > > Ah, > > Thanks for isolating the issue. > > It looks like the empty last row is tricking org-plot.el into thinking > that the entire Date column contains text labels, so it tries to use the > values of that column to label the data with xticlabels [1]. This is > useful for histograms such as the "Citas" graph in [2]. > > So all in all I'd say this is fine behavior for something like org-plot > which tries to guess the user's intentions. Well, good intentions is one thing, wrong behaviour is another? If the user has specified "ind:1 deps:(2)", even if org-plot identifies column 1 as having labels for the tic marks, the generated parameter to the plot command should be, at best: ... using 1:2:xticlabels(1) ... which is actually nonsensical as well but not as bad as what is currently generated: ... using 1:xticlabels(1) which completely ignores the "deps:(2)" option! In any case, I'm not suggesting in any way that this is a critical bug! Simply removing the empty line allows org-plot to work perfectly.