emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Carsten Dominik <dominik@science.uva.nl>
To: Eric Schulte <schulte.eric@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: org-plot histogram bug when the x-axis labels could be interpreted as numbers
Date: Sat, 17 Jan 2009 09:01:12 +0100	[thread overview]
Message-ID: <4F4DF283-A073-4248-B156-665A6AEA7E02@uva.nl> (raw)
In-Reply-To: <87y6xd7fwp.fsf@gmail.com>

Applied, thanks.

- Carsten

On Jan 14, 2009, at 10:10 PM, Eric Schulte wrote:

> Charles Sebold <csebold@gmail.com> writes:
>
>> On 14 Jan 2009, William Henney wrote:
>>
>>> From glancing through org-plot.el, it seems as though the problem is
>>> that the text-ind parameter is false when all the values in the
>>> "independent variable" column are legal numbers. However, my lisp
>>> skills are not up to fixing this.
>>
>> This may fix that problem, but I don't know that it doesn't produce a
>> nest of bigger ones.  Eric should look at this first.  This seems  
>> to me
>> to be useful enough when producing histograms.
>>
>
> Hi,
>
> I believe that forcing text-ind to be true when the plot type is  
> 'hist'
> is a safe enough maneuver (especially plotting with hist seems to fail
> if text-ind is not true).
>
> I would recommend this patch.  It's the same idea as Charles' only
> implemented in a different place.
>
> Thanks -- Eric
>
> diff --git a/lisp/org-plot.el b/lisp/org-plot.el
> index 7efd84a..1792d50 100644
> --- a/lisp/org-plot.el
> +++ b/lisp/org-plot.el
> @@ -316,12 +316,13 @@ line directly before or after the table."
> 			   (mapcar (lambda (row) (nth ind row)) table)))) 0)
> 	      (plist-put params :timeind t)
> 	    ;; check for text ind column
> -	    (if (> (length
> -		    (delq 0 (mapcar
> -			     (lambda (el)
> -			       (if (string-match org-table-number-regexp el)
> -				   0 1))
> -			     (mapcar (lambda (row) (nth ind row)) table)))) 0)
> +	    (if (or (string= (plist-get params :with) "hist")
> +		    (> (length
> +			(delq 0 (mapcar
> +				 (lambda (el)
> +				   (if (string-match org-table-number-regexp el)
> +				       0 1))
> +				 (mapcar (lambda (row) (nth ind row)) table)))) 0))
> 		(plist-put params :textind t)))))
>       ;; write script
>       (with-temp-buffer
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

      parent reply	other threads:[~2009-01-17  8:09 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-14 16:49 org-plot histogram bug when the x-axis labels could be interpreted as numbers William Henney
2009-01-14 20:15 ` Charles Sebold
2009-01-14 21:10   ` Eric Schulte
2009-01-15  0:18     ` Charles Sebold
2009-01-17  8:01     ` Carsten Dominik [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4F4DF283-A073-4248-B156-665A6AEA7E02@uva.nl \
    --to=dominik@science.uva.nl \
    --cc=emacs-orgmode@gnu.org \
    --cc=schulte.eric@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).