2,087 reputation
317
bio website
location Austin TX
age
visits member for 11 months
seen 9 hours ago
stats profile views 116

Python developer / recovering academic / dog chaser / beer brewer /


1d
comment How do I load both Strings and floats into a numpy array?
You could split the file into separate chunk by looking at the lines where the header starts, then load those into numpy to create separate arrays. Or something like that. . .
1d
comment How do I load both Strings and floats into a numpy array?
how big is the file? Can you load the whole thing in memory?
2d
comment Saving port 9600 datas in given time
Give the file a name based on the start time perhaps? That would make a unique filename each time it runs.
2d
comment Saving port 9600 datas in given time
just add ths.close() below ser.close()
2d
comment Multiple Editing of the same file
Ah, I think that a database is the way to go here...
May
16
answered check if a record exists in any of the different tables in a database
May
14
comment Lookup speed: State or Database?
Also, the redis DB could be on a totally different box of course, which would free up some memory on the app server.
May
14
comment Lookup speed: State or Database?
yeah, the redis option would be a memory sink, but there would also be no costs at startup. Adding/removing things in redis sets is easy too, and there are some other features like unions etc too.
May
14
answered Lookup speed: State or Database?
May
11
comment SQL Full outer join or alternative solution
All of these ended up working, I went with this one because it saved me some typing.
May
11
accepted SQL Full outer join or alternative solution
May
10
comment SQL Full outer join or alternative solution
yup, (id, event_dt) is the pk
May
10
comment SQL Full outer join or alternative solution
The condition to group them is by ID, event_dt pairs. So for every ID, event date I want all the values from T1, T2, T3, T4. The values I put in were just dummy values.
May
10
asked SQL Full outer join or alternative solution
May
8
comment 3D graph with live updating
What does the dataframe look like, can you give us na sample of the data?
May
6
revised Using bootstrap and django
edited tags
May
6
awarded  Necromancer
May
6
answered Python: Find number of occurrences of given array within two-dimensional array
May
2
comment Numpy subclass attribute slicing
Also may want to look into PyTables, a nice way of storing data and associated metadata. Super fast also!
May
1
comment Converting BLOB, stored on a database, to an image on an HTML website
Cool, if it worked then please upvote this answer so that others will be able to use it if they have the same problem.