mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Merge pull request #564 from alanbernstein/remove-.n
Remove .n frame suffix
This commit is contained in:
commit
7693fc4211
1 changed files with 1 additions and 1 deletions
|
|
@ -182,7 +182,7 @@ Average of total_amount per passenger_count can be computed with some postproces
|
|||
queries = ''
|
||||
pcounts = range(10)
|
||||
for i in pcounts:
|
||||
queries += "TopN(Bitmap(id=%d, frame='passenger_count.n'), frame=total_amount_dollars.n)" % i
|
||||
queries += "TopN(Bitmap(id=%d, frame='passenger_count'), frame=total_amount_dollars)" % i
|
||||
resp = requests.post(qurl, data=queries)
|
||||
|
||||
average_amounts = []
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue