From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dan Davison Subject: Re: POLL: the 40 variables project Date: Thu, 29 Jan 2009 16:02:10 -0500 Message-ID: <20090129210210.GA26806@stats.ox.ac.uk> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LSe1h-0000X3-Qo for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 16:02:17 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LSe1g-0000WQ-7v for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 16:02:17 -0500 Received: from [199.232.76.173] (port=55985 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LSe1g-0000WL-54 for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 16:02:16 -0500 Received: from markov.stats.ox.ac.uk ([163.1.210.1]:52073) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LSe1f-0004t4-HZ for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 16:02:15 -0500 Content-Disposition: inline In-Reply-To: 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: Manish Cc: emacs org-mode mailing list On Thu, Jan 29, 2009 at 11:26:37PM +0530, Manish wrote: < ... > > I am collating the information in the following format. > > | Submitter | Variable | Value | Comment | > > Further analyses like which were the most commonly customized variables, > their values etc. can then be derived from the listing (may be using R Hi Manish, If your results table is named with #+TBLNAME:org-variables-table then you can create a table of counts for each org variable with #+TBLR: columns:2 action:tabulate table:org-variables-table That will be sorted alphabetically on variable name. To have it sorted by the counts you could use #+TBLR: table:org-variables-table #+TBLRR: x <- sort(table(x[,2]), decreasing=TRUE) And to restrict it to the top 30 that would be #+TBLRR: x <- sort(table(x[,2]), decreasing=TRUE)[1:30] http://www.stats.ox.ac.uk/~davison/software/org-table-R/org-tblR.el Dan (You need to have ess-mode installed, and have R running with M-x R. Then issue org-table-R-apply with point in the above lines.) (And with the obvious alteration you can rank the survey respondents in terms of how hardcore our org customizations are...) > or Excel.) Ideas on how to better organize this data are welcome. > > So far we have 13 responses. > > -- > Manish > > > _______________________________________________ > 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 -- http://www.stats.ox.ac.uk/~davison