defaultdict (collections.defaultdict) is a subclass of the python built-in dict class that greatly simplifies the creation of dictionaries of python objects.

learn more… | top users | synonyms

0
votes
1answer
60 views

convert a list of delimited strings to a tree/nested dict, using python

I am trying to convert a list of dot-separated strings, e.g. ['one.two.three.four', 'one.six.seven.eight', 'five.nine.ten', 'twelve.zero'] into a tree (nested lists or dicts - anything that is easy ...
1
vote
1answer
38 views

Pickling on GAE ndb

I am trying to pickle and unpickle structured data into an ndb.PickleProperty() property like so: month = MonthRecord.get_or_insert(month_yr_str, parent=ndb.Key('Type','Grocery'), ...
0
votes
0answers
25 views

Python Annotate File based on Value in ranges

I am working to annotate genomic data with annotations from an annotation file. The Genomic data is in the form: Chr Location ... The Annotation data is in the form Chrom Start End ...
3
votes
3answers
56 views

Can't pickle defaultdict

I have a defaultdict that looks like this: dict1 = defaultdict(lambda: defaultdict(int)) The problem is, I can't pickle it using cPickle. One of the solution that I found here is to use ...
4
votes
3answers
99 views

More Pythonic way of counting things in a heavily nested defaultdict

My code currently has to count things in a heavily nested dict into another. I have items that need to be indexed by 3 values and then counted. So, before my loop, I initialize a nested defaultdict ...
0
votes
2answers
44 views

file IO with defaultdict

I'm attempting to: load dictionary update/change the dictionary save (repeat) Problem: I want to work with just 1 dictionary (players_scores) but the defaultdict expression creates a completely ...
0
votes
1answer
83 views

How to readjust defaultdict(list)s - Python

I need a defaultdict that can do get the finaldict given a list of query words from the first file. The final dict is a dictionary of a pair of words from both files that shares the same ID. e.g. ...
0
votes
1answer
84 views

How to extract matching strings into a defaultdict(set)? Python

I have a textfile that has such lines (see below), where an english sentence is followed by a spanish sentence and the equivalent translation table delimited by "{##}". (if you know it it's the output ...
1
vote
1answer
96 views

python collections.defaultdict with list of length two

I have a situation where a key will have two values which will be updated during the program. More conretely, starting from a empty dictionary d = {}, I would like to do some thing like this: d[a][0] ...
2
votes
3answers
124 views

Joining large dictionaries by identical keys

I have around 10 huge files that contain python dictionaries like so: dict1: { 'PRO-HIS-MET': { 'A': ([1,2,3],[4,5,6],[7,8,9]), 'B': ([5,2],[6],[8,9]), ...
1
vote
1answer
64 views

how to accumulate the value according to the key in a defaultdict

If I have a defaultdict(list) d =defaultdict(list) such as 1: 0 1:0.2 1: 0.3 2: 0.2 2: 0.4 2: 0.1 ...... how I transform it into a similar defaultdict(list) ...
0
votes
1answer
44 views

Assign dict contents to independent variables

How do I split a defaultdict into independent lists with keys as listnames and values as the list elements. For example: defaultdict ([('A', [1, 3, 4]), ('B', [3, 6, 8])]) How do I get: A= ...
0
votes
1answer
42 views

Access values from defaultdict object

I have a defaultdict that has multiple values per key. I want to calculate the average value for each key. I can't figure out how to access the values associated with each key. Can anyone help? ...
1
vote
2answers
97 views

Slow defaultdict and mongoDB import from tab-delimited file. Can anyone spot my bottleneck?

So I'm trying to import about 80 million page views from a log file. I'm trying to put them in the database as sessions, i.e. groups of page views separated with 20 minutes in between. So ...
1
vote
1answer
34 views

optimize python key-searching in hierarchichal dictionary

I am trying to optimize my code since when I try to load huge dictionaries it becomes really slow. I think It's because it searchs for a key in the dictionary. I've been reading about python ...
4
votes
2answers
246 views

Exposing `defaultdict` as a regular `dict`

I am using defaultdict(set) to populate an internal mapping in a very large data structure. After it's populated, the whole structure (including the mapping) is exposed to the client code. At that ...
0
votes
2answers
78 views

Extract information from defaultdict

I have a defaultdict that contains the calculation of the average position of number ( Euler problem ) [('1', 0.6923076923076923), ('0', 2.0), ('3', 0.2222222222222222), ('2', 1.0909090909090908), ...
0
votes
2answers
97 views

Accessing specific python defaultdict

Say I have a defaultdict with values: x = defaultdict(int) x[a,1] = 1 x[a,2] = 2 x[a,3] = 3 x[b,1] = 4 x[b,2] = 5 x[b,3] = 6 x[c,1] = 7 x[c,2] = 8 x[c,3] = 9 How do I access only those elements ...
2
votes
2answers
193 views

MongoDB/PyMongo won't $set attribute to document - but sets all other attributes! (bizarre error)

I'm trying to write a defaultdict variable to a document in my MongoDB. Everything else sets fine, just not this one attribute, its bizarre! I'm setting a rather large defaultdict called 'domains', ...
0
votes
1answer
103 views

min() on collections.defaultdict() returns max count

When using min() on a defaultdict object, it strangely returns the maximum if used on a dict counting indices of a string. For example: >>> import collections >>> ...
1
vote
2answers
85 views

Python: Finding number of same lists occurrences and averaging

I will explain my issue using an example: A=[[1,2,10],[1,2,10],[3,4,5]] B=[[1,2,30],[6,7,9]] From these lists of lists, i would like to create a third one: C=A+B So i get : C= [[1, 2, 10], [1, ...
0
votes
1answer
98 views

Python: How can I add the line number of frequencies and sort alphabetically using dictionaries

I have a project where I must obtain the amount of frequencies of each word through sys.stdin I have obtained that part. The second part is getting the line number for each word, I feel I have ...
2
votes
1answer
194 views

Is the defaultdict in Python's collections module really faster than using setdefault?

I've seen other Python programmers use defaultdict from the collections module for the following use case: from collections import defaultdict s = [('yellow', 1), ('blue', 2), ('yellow', 3), ...
0
votes
2answers
276 views

Counting every word in a text file only once using python

I have a small python script I am working on for a class homework assignment. The script reads a file and prints the 10 most frequent and infrequent words and their frequencies. For this assignment, a ...
0
votes
4answers
184 views

Retrieving total number of words with 2 or more letters in a document using python

I have a small Python script that calculates the top 10 most frequent words, 10 most infrequent words and the total number of words in a .txt document. According to the assignment, a word is defined ...
0
votes
2answers
154 views

Print 10 most infrequent words of a text document using python

I have a small python script that prints the 10 most frequent words of a text document (with each word being 2 letters or more) and I need to continue the script to print the 10 most INfrequent words ...
0
votes
1answer
52 views

Python Exec Returns More Lines Then Expected

First off I would like to premise this question with, "yes I know I shouldn't use exec, however my data is trusted." I have a script that creates a bunch of default dictionary lines in a file. Each ...
1
vote
2answers
202 views

Python Matplotlib Plot Hourly Data Saved in Defaultdict Line in File

I have a file that contains a few thousand lines of data that looks like this: defaultdict(<type 'int'>, {'2012021310': 76422, '2012021311': 94188, '2012021323': 139363, '2012021312': 111817, ...
2
votes
3answers
267 views

Parse defaultdict string

I have dumped multiple defaultdict with a simple print command, like this: defaultdict(<type 'list'>, {'actual': [20000.0, 19484.0, 19420.0], 'gold': [20000.0, 19484.0, 19464.0]}) Is there ...
1
vote
2answers
251 views

Merging nested defaultdicts

I have this: dict1 = defaultdict(lambda:defaultdict(list)) dict1['rl1']['sh1'] = ['a','b'] dict1['rl1']['sh2'] = ['c','d'] dict1['rl2']['sh1'] = ['c','d'] dict2 = ...
19
votes
4answers
340 views

Python dictionary that defaults to key?

Is there a way to get a defaultdict to return the key by default? Or some data structure with equivalent behavior? I.e., after initializing dictionary d, >>> d['a'] = 1 >>> d['a'] 1 ...
3
votes
1answer
878 views

python defaultdict: 0 vs. int and [] vs list

Is there any difference between passing int and lambda: 0 as arguments? Or between list and lambda: []? It looks like they do the same thing: from collections import defaultdict dint1 = ...
0
votes
3answers
116 views

An alternative to pythons “setdefault” augmented assignment

I want a dictionary that shows boolean counts. I.e. how often name/position combination meets criteria. E.g.: Key - Value1 - Value2 John12 Yes:300 No:25 John13 Yes:400 No:29 Linda13 Yes:300 No:60 ...
3
votes
2answers
149 views

Python, double autoenumerated defaultdict

to optimize some code I am using the following a = defaultdict(lambda: len(a)) a[0]=0 a[1]=1 a[7]=2 ... My problem is now that I would need a nested defaultdict, i.e., b = defaultdict(lambda: ...
-2
votes
1answer
93 views

Dictionary Formatting and defaultdict function

I have a dictionary which is the format of {(a,b):c, (a2,b2):c2 and so on}. From this format, there are more than one key of a2, a and so on and for each a, a2 the b, b2 however occurs only once and ...
1
vote
3answers
92 views

defaultlist design

I am trying to create defaultlist, by analogy with defaultdict. The idea is that sometimes I want a list that is pre-filled (virtually!) with some element at all indices for which the value is not ...
2
votes
1answer
97 views

Is there a Python's defaultdict functionality available in Lua

Is there a functionality in Lua similar to collections.defaultdict available in Python, which automatically handles default values for non-existent associative array keys? I want the code below to ...
1
vote
2answers
1k views

Sorting a defaultdict by value in python

I have a data-structure which is something like this: The population of three cities for different year are as follows. Name 1990 2000 2010 A 10 20 30 B 20 30 10 C 30 10 20 ...
1
vote
2answers
266 views

Why is defaultdict creating an array for my values?

Im creating a default dict from an array of arrays: >>> array = [['Aaron','1','2'],['Ben','3','4']] >>> d = defaultdict(list) >>> for i in array: ...
0
votes
2answers
226 views

Using defaultdict with multiprocessing?

Just experimenting and learning, and I know how to create a shared dictionary that can be accessed with multiple proceses but I'm not sure how to keep the dict synced. defaultdict, I believe, ...
1
vote
2answers
221 views

Python `defaultdict`: Use default when setting, but not when getting

Is there any way I can make a collections.defaultdict return a default constructed object when I set it... foo = defaultdict(list) foo[3].append('dsafdasf') ... but not when I try to access it? ...
2
votes
1answer
130 views

How to obtain the type of the values in a defaultdict

I don't know if this question is trivial or not. But after a couple of hours searching I decided to ask it here. Consider the following code: from collections import defaultdict d = defaultdict(int) ...
5
votes
2answers
571 views

How to check for a key in a defaultdict without updating the dictionary (Python)?

I usually use the following idiom when working with a Python dictionary: try: val = dct[key] except KeyError: print key, " is not valid" since for large dictionaries, the statement if key ...
0
votes
4answers
704 views

Searching key/values with defaultdict

I'm familiar with the use of the iteritems() and items() use with the standard dictionary which can be coupled with a for loop to scan over keys and values. However how can I best do this with the ...
3
votes
4answers
299 views

defaultdict equivalent for lists

Is there\How would you build an equivalent of python's very useful collections.defaultdict? Imagined usage of such a container: >>> a = collections.defaultlist(0) >>> a[2]=7 ...
2
votes
5answers
863 views

How to iterate through a defaultdict(list) in Python?

How do i iterate through a defaultdict(list) in Python? Is there a better way of having a dictionary of lists in Python? I've tried the normal iter(dict) but I've got the error: >>> import ...
6
votes
3answers
3k views

Python defaultdict and lambda

In someone else's code I read the following two lines: x = defaultdict(lambda: 0) y = defaultdict(lambda: defaultdict(lambda: 0)) As the argument of defaultdict is a default factory, I think the ...
2
votes
3answers
758 views

Using the key in collections.defaultdict

collections.defaultdict is great. Especially in conjunction with lamda: >>> import collections >>> a = collections.defaultdict(lambda : [None,None]) >>> a['foo'] [None, ...
3
votes
1answer
1k views

python collections.defaultdict() compile error

The following code, simple and clear enough, produces an error when compiled: import string import collections #create dictionary with alphabets as keys, and empty values list = ['aema', 'airplane', ...
2
votes
1answer
326 views

Why is collections.deque slower than collections.defaultdict?

Forgive me for asking in in such a general way as I'm sure their performance is depending on how one uses them, but in my case collections.deque was way slower than collections.defaultdict when I ...

1 2