Erin Sheldon

Results 242 comments of Erin Sheldon

I would be interested to see the extrapolation plots for the half-light-radius as well, and even more interesting the joint distribution of flux and size. This space has multiple populations,...

On 10/19/16, David Kirkby [email protected] wrote: > KDE allows you to smooth and interpolate, but not extrapolate, right? right, I have not done any extrapolation my self, was just confirming...

That sounds fine to me. Would you be willing to submit a pull request? Note that one may not want this option for all hdus in a file, so it...

Sorry we let this one slip for so long I think we'll take what you have with the per-hdu settings. We can decide later if we want to also have...

Thanks for the report. Can you please post an example that reproduces?

I think this might be straightforward, but tedious to implement. It basically comes down to ignoring some of the fields ("V") and repacking the data before creating the table and...

Note _writing_ aligned data already works fine. For writing, references to the individual fields in the structured array are packed into a list, and in the C code I use...

Also note, that `arr.dtype.names` reports the names of interest, but the descriptor has the extra fields we would ignore ``` python >>> dtype=numpy.dtype([('ra','f8'), ('index','i4'), ('dec','f8'), ('s','S7')],align=True) >>> xa=numpy.zeros(3, dtype=dtype) #...

@olebole I need to ask you some questions about this. I'm confused how numpy record arrays work at all on these systems if `align=False`. On one of these systems, is...

In the case of aligned data, one cannot use the faster reading functions. This results in a significant slowdown, about a factor of two in the case where one is...