Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a statistician searching for an efficient way to select rows or columns from a table of data in Mathematica. Let me pose the question in 2 parts with a SQL-style table of data:

List[{"ID", "Variable 1", "Variable 2"}, {"Alpha", 1, 0}, {"Beta", 1, 
1}, {"Alpha", 1, 0}]]

Which, when formatted as a Grid looks roughly like this:

ID     Variable 1 Variable 2
Alpha       1          0
Beta        1          1
Alpha       1          0

Part 1: How can the data in the header of the table, for example "ID", be set as the name of the list for that column? Ideally, the result would allow you to do the following:

In[24]:= ID

Out[24]= {"Alpha", "Beta", "Alpha"}

Would one need to write a function to dissect the header row and then line up the header names as the name of a list that corresponds to the appropriate header? Although one might ask 'Why not refer to everything as a position and avoid the renaming headache entirely?' it is extremely cumbersome when working with tens or hundreds of columns/variables to use a meaningless position to reference a variable.

Part 2: How can an individual row, or subset of rows, be returned from a table? Essentially I'm looking for the equivalent of the "WHERE" clause in SQL or the "subset" function in R.

For example in the "ID" column I might want to retrieve all the rows where "ID" == "Alpha". Do I have to create a method that iterates over the "ID" list, stores the position in the list where the value of the element is equal to "Alpha", and then concatenate a list that contains the value in that position for all the other lists?

I'm confident I could write the functions I mention, but it seems unconscionable that Mathematica would overlook such a rudimentary data manipulation task. I understand there's also the DataManipulation package that allows for SQL queries, but I have to believe (hope?) there's a way native to Mathematica that's quicker.

Thank you for indulging me! And my apologies in advance to all the Mathematica aficionados who might see this as a corrupt question for trying to program in another language while in Mathematica!

share|improve this question
4  
Just check out the DatabaseLink reference.wolfram.com/mathematica/DatabaseLink/tutorial/… It has an easy syntax ... and is real SQL. – belisarius Jan 25 '11 at 4:40

1 Answer

up vote 14 down vote accepted

I think, your question has 3 levels: convenient syntax, data representation, and efficiency. I can offer a very lightweight solution which addresses all of these in the simplest way: syntax is resembling SQL but not exactly the same, data representation - just lists, as in your example (we do not make custom wrappers, objects of any kind, etc), and efficiency will be similar to the standard SQL select, in terms of asymptotic complexity of the query (but not in absolute timings of course):

Clear[getIds];
getIds[table : {colNames_List, rows__List}] := {rows}[[All, 1]];

ClearAll[select, where];
SetAttributes[where, HoldAll];
select[table : {colNames_List, rows__List}, where[condition_]] :=
  With[{selF = Apply[Function, Hold[condition] /.
      Dispatch[Thread[colNames -> Thread[Slot[Range[Length[colNames]]]]]]]},
  Select[{rows}, selF @@ # &]];

Here is how you could use it:

In[55]:= table = List[{"ID", "Variable 1", "Variable 2"}, {"Alpha", 1, 0}, {"Beta", 1,
1}, {"Alpha", 1, 0}];

In[56]:= getIds[table]

Out[56]= {"Alpha", "Beta", "Alpha"}

In[57]:= select[table, where["ID" == "Alpha"]]

Out[57]= {{"Alpha", 1, 0}, {"Alpha", 1, 0}}

In[58]:= select[table, where["Variable 1" == 1]]

Out[58]= {{"Alpha", 1, 0}, {"Beta", 1, 1}, {"Alpha", 1, 0}}

In[59]:= select[table, where["Variable 2" == 1]]

Out[59]= {{"Beta", 1, 1}}

HTH

share|improve this answer
I haven't timed Dispatch, but wouldn't it a waste of time to built a dispatch table for every call to select (especially for very wide tables? – Sjoerd C. de Vries Nov 23 '11 at 11:35
@Sjoerd It would be much less waste than not doing it in this approach, assuming that the table in question has many rows - since otherwise, the full list of rules for the correspondence between the column names and indices will have to be applied generally several times for every invocation of the pure function in Select, that is - for every row. That would be a real waste. – Leonid Shifrin Nov 23 '11 at 11:39
I know you want to have it work more generic, i.e., for any table. In my case, I'm mostly the only user of the software and life is easier mostly addressing one table at a time. I just do a one-time definition like column["header1"]=1 using MapThread. – Sjoerd C. de Vries Nov 23 '11 at 11:56
@Sjoerd But this is essentially the same - Dispatch works similarly to DownValues - but is local (I don't have to clear or remove column later), which is why I prefer it. I could introduce a local symbol with Module, and do it your way. The point is, for many tables, it is easier to not think about bookkeeping and reconstruct the mapping for every table afresh. The performance hit will only be noticeable for lots of queries done on extremely shallow tables with just a few rows - which is probably not the most common use case. – Leonid Shifrin Nov 23 '11 at 12:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.