350 reputation
19
bio website
location
age
visits member for 1 year, 5 months
seen May 8 at 5:28
stats profile views 30

Jan
21
comment Issue with persistent mongoDB data on EC2
The only thing I've noticed is: Mon Jan 21 17:28:30 [initandlisten] exception in initAndListen std::exception: boost::filesystem::exists: Permission denied: "/root/data/mongodb", terminating. I don't know why this is. Here's the output of ls -l: drwxrwxrwx 3 mongodb root 4096 2013-01-20 17:15 mongodb, so I don't know why this is occuring.
Jan
20
comment Issue with persistent mongoDB data on EC2
I edited the answer to reflect your answers. Thanks for your help!
Dec
27
comment Lengthy boolean search of strings in python
I liked both ideas very much, but I'm going to go ahead and accept this one, but I do very much like both answers and will likely play around with both. Thank you both for your help!
Nov
9
comment python testing my method
Edited the answer to answer some of your questions.
Nov
4
comment creating python packages
I was actually under a mistaken impression of how the package needed to be created, but I think I've got it figured out now. Thanks.
Nov
4
comment creating python packages
Thank you. This actually clears up some other things for me as well.
Oct
16
comment Transformed Data Takes up 4x more space for a doubling of variables in pandas for python
That makes perfect sense. Thanks a lot!
Sep
19
comment python multiprocessing apply_async only uses one process
I appreciate the answer, but am trying to stick with apply_async for various reasons.
Sep
18
comment python multiprocessing with boolean and multiple arguments
@unutbu I'm sorry, that should have been apply_async. I've edited the code to reflect this.
Aug
17
comment Error with class in python
@BryanOakley, yes, sorry about that again. Thank you for all of your help.
Aug
16
comment Error with class in python
@BryanOakley Sorry, I will be more diligent moving forward.
Aug
16
comment Error with class in python
@BryanOakley, I should probably be more clear with my edits. I'm trying things as people suggested them and so I probably got the error and code mixed up.
Aug
16
comment Error with class in python
model is from the for loop: for model in self.models: and self.models is defined in the init function: self.models = models where models is defined in the a = project.generatedTable('/path/to/test.tex', models).
Aug
16
comment Error with class in python
The only thing I edited in the traceback was the path to the file because it had some information that I didn't want to be on the net in it.
Aug
6
comment Pulling variable names when using pandas and statsmodels
Yep, probably should have thought of that first. Thank you!
Jul
26
comment How do you use Induction to connect to a local SQLite database?
I'm having the same problem and maybe one of you can help. I have the a database (data.db) in a folder named data on my desktop. So, the file path is /Users/username/Desktop/data/data.db. I've tried entering this into the fields, and I've tried drag-and-dropping the file. Neither has seemed to work. Thoughts?
Jun
7
comment predicting class for new data using neuralnet
That did it, as did deleting the y column from the test set. Thank you very much!
Apr
21
comment Naming multiple files in python and scrapy
And just to add a bit more to that above comment, the script would generate a name like "August 2, 2011" and using your code would check that against an existing directory. If it already exists it would try to name it "August 2, 2011.1". Let's say that's successful, but it runs across another "August 2, 2011" it would then try that name again and find that it exists, but at this point "August 2, 2011.1" already exists also, and so on. That seems to be a problem, or maybe I'm not understanding.
Apr
21
comment Naming multiple files in python and scrapy
I like this better than mine, but have a some questions. Tried it out in a test directory that had three files named "test.txt" "test.1.txt" and "test.2.txt". Whenever I put test.txt in as the filename for the script (so print get_file_store_name("path", "test.txt)) it returns test.2.txt, which should be test.3.txt. Basically, what happens if the spider runs across 3+ pages that all need to be generated with the same name, just a different ending number?
Apr
1
comment Wordcounts line breaks in python
Thank you very much for your help!