Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'else:': 0.03; 'from:addr:yahoo.co.uk': 0.04; 'aggregate': 0.07; 'postgresql': 0.07; '[];': 0.09; 'indexes': 0.09; 'lawrence': 0.09; 'linear': 0.09; 'lst': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:process': 0.09; 'that).': 0.09; 'python': 0.11; 'jan': 0.12; 'language.': 0.14; 'thread': 0.14; '-999': 0.16; '1:09': 0.16; 'algorithmic': 0.16; 'merged': 0.16; 'messy': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'such,': 0.16; 'followed': 0.16; 'ignore': 0.16; 'language': 0.16; 'wrote:': 0.18; 'thanks.': 0.20; '>>>': 0.22; 'code,': 0.22; 'header:User-Agent:1': 0.23; 'closely': 0.24; 'filtering': 0.24; 'mon,': 0.24; "i've": 0.25; 'switch': 0.26; 'task': 0.26; 'header:X-Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'idea': 0.28; 'chris': 0.29; 'am,': 0.29; "doesn't": 0.30; 'database,': 0.30; "i'm": 0.30; 'reply.': 0.31; 'too.': 0.31; '13,': 0.31; 'larry': 0.31; 'option.': 0.31; 'remotely': 0.31; "they'll": 0.31; 'lists': 0.32; 'this.': 0.32; "can't": 0.35; 'something': 0.35; 'but': 0.35; 'there': 0.35; 'subject:data': 0.36; 'doing': 0.36; 'thanks': 0.36; "i'll": 0.36; 'url:org': 0.36; 'should': 0.36; 'too': 0.37; 'list': 0.37; 'list.': 0.37; 'being': 0.38; 'handle': 0.38; 'whatever': 0.38; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'anything': 0.39; 'aspects': 0.39; 'though,': 0.39; 'sure': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'even': 0.60; 'skip:u 10': 0.60; 'removing': 0.60; "you're": 0.61; 'back': 0.62; 'such': 0.63; 'group,': 0.63; 'our': 0.64; 'low': 0.83; 'complexity': 0.84; 'overall,': 0.84; 'partial': 0.84; 'revive': 0.84; 'start.': 0.84; 'x):': 0.84; 'hate': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Mark Lawrence Subject: Re: efficient way to process data Date: Mon, 13 Jan 2014 18:42:39 +0000 References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: host-78-147-189-33.as13285.net User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 71 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1389638572 news.xs4all.nl 2962 [2001:888:2000:d::a6]:43622 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:63852 On 13/01/2014 18:27, Larry Martell wrote: > On Mon, Jan 13, 2014 at 1:09 AM, Chris Angelico wrote: >> On Mon, Jan 13, 2014 at 2:35 PM, Larry Martell wrote: >>> Thanks for the reply. I'm going to take a stab at removing the group >>> by and doing it all in python. It doesn't look too hard, but I don't >>> know how it will perform. >> >> Well, if you can't switch to PostgreSQL or such, then doing it in >> Python is your only option. There are such things as GiST and GIN >> indexes that might be able to do some of this magic, but I don't think >> MySQL has anything even remotely like what you're looking for. >> >> So ultimately, you're going to have to do your filtering on the >> database, and then all the aggregation in Python. And it's going to be >> somewhat complicated code, too. Best I can think of is this, as >> partial pseudo-code: >> >> last_x = -999 >> x_map = []; y_map = {} >> merge_me = [] >> for x,y,e in (SELECT x,y,e FROM t WHERE whatever ORDER BY x): >> if x> x_map[-1].append((y,e)) >> else: >> x_map.append([(y,e)]) >> last_x=x >> if y in y_map: >> merge_me.append((y_map[y], x_map[-1])) >> y_map[y]=x_map[-1] >> >> # At this point, you have x_map which is a list of lists, each one >> # being one group, and y_map which maps a y value to its x_map list. >> >> last_y = -999 >> for y in sorted(y_map.keys()): >> if y> merge_me.append((y_map[y], last_x_map)) >> last_y=y >> last_x_map=y_map[y] >> >> for merge1,merge2 in merge_me: >> merge1.extend(merge2) >> merge2[:]=[] # Empty out the list >> >> for lst in x_map: >> if not lst: continue # been emptied out, ignore it >> do aggregate stats, get sum(lst) and whatever else >> >> I think this should be linear complexity overall, but there may be a >> few aspects of it that are quadratic. It's a tad messy though, and >> completely untested. But that's an algorithmic start. The idea is that >> lists get collected based on x proximity, and then lists get merged >> based on y proximity. That is, if you have (1.0, 10.1), (1.5, 2.3), >> (3.0, 11.0), (3.2, 15.2), they'll all be treated as a single >> aggregation unit. If that's not what you want, I'm not sure how to >> handle it. > > Thanks. Unfortunately this has been made a low priority task and I've > been put on to something else (I hate when they do that). I'll revive > this thread when I'm allowed to get back on this. > I've not followed this thread closely but would this help http://pandas.pydata.org/ ? When and if you get back to it, that is!!! -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence