From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Samuel Wales" Subject: Re: org-plot (generating graphs from org-mode) Date: Wed, 27 Aug 2008 08:27:45 -0700 Message-ID: <20524da70808270827w4c4b1649u939ff77357b90e34@mail.gmail.com> References: <18611.25143.79101.479163@gargle.gargle.HOWL> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KYMwB-0003Yi-VN for emacs-orgmode@gnu.org; Wed, 27 Aug 2008 11:28:00 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KYMwB-0003YE-Ab for emacs-orgmode@gnu.org; Wed, 27 Aug 2008 11:27:59 -0400 Received: from [199.232.76.173] (port=56051 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KYMwB-0003Y7-29 for emacs-orgmode@gnu.org; Wed, 27 Aug 2008 11:27:59 -0400 Received: from ey-out-1920.google.com ([74.125.78.147]:15203) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KYMw8-0003TN-Ll for emacs-orgmode@gnu.org; Wed, 27 Aug 2008 11:27:58 -0400 Received: by ey-out-1920.google.com with SMTP id 4so489560eyg.24 for ; Wed, 27 Aug 2008 08:27:45 -0700 (PDT) In-Reply-To: <18611.25143.79101.479163@gargle.gargle.HOWL> Content-Disposition: inline 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: Org-mode Good stuff. Possibilities: 1. For a selected column, it can be nice to draw a histogram. Long ago, I developed the following formula for choosing a bin size. Seems to work. 5*(max-min)/n You can use something like bin*round*($1 * (1.0/bin)) to bin. Note that cl-extra.el's (round*) might be more consistent and mathematically vetted than (round) (though you might not be allowed to use cl-extra.el). I haven't looked at gnuplot in a decade, so maybe it already has this. 2. It might be nice to show descriptive statistics (I would show mean, median, geometric mean, standard deviation, min, max, range) somewhere while showing the plot, if you don't already do this.