Adam Hughes
Adam Hughes
Is it straightforward to drop 3d draggable axis as is done in fishnet plots of 2dCS book?
Ok, **keep these plots separate** for the 3d API. That way, can send users right to MPL docs instead of writing my own. THere's also too many fancy kwargs to...
Didn't I solve this in PAME notebook actually more recently?
Ok, thanks. Sorry for late followup
**FOR NOW, ADDED AS A HACK TO **GETATTR** OF PARTICLE MANAGER** ``` # Bypasses a bug (or pyparty design flaw?) in ipython notebook 2.0 beta # when ending a cell...
At this point, specindex class is worth making. Check out np datatypes: http://docs.scipy.org/doc/numpy/user/basics.types.html Think I should choose a default one and force into so that dtype object not returned. Also,...
Hmm seems like numpy defaults to float 64 and attempting to alter default construction could be a can of worms: http://stackoverflow.com/questions/5721831/python-making-numpy-default-to-float32 Instead, just convert object to dtype=float64 upon construction and...
Also a bit worried about how I define constants like c and h and stuff. Should I define these as np.64 types etc...
Will prolly need numpy compat json > > > import json > > > import numpy as np > > > class NumpyAwareJSONEncoder(json.JSONEncoder): > > > def default(self, obj): >...
After do this, don't forget to update script. Right now, it's outputting csv_cropped outside of the apply_parameters method where it originally was. That's because if I do intervals from csv,...