-
|
I know the questions are not directly about
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
You might have to read the code to get the answer to some of these questions. Here is where the iterative clipping is done, for example: https://github.com/kbarbary/sep/blob/master/src/background.c#L456-L491
Sounds like a pretty arbitrary threshold that the authors found "works well in practice". That would be my guess anyway. Source Extractor in general is filled with heuristics that work "pretty well" in practice, but aren't perfect.
Or galaxies, yes.
if you think the region of sky is empty, it's better to use mean than median or mode because it is a less noisy estimator. You can take "noisy" here to mean the expected difference between your estimate and the true value.
perhaps in the region of the plot around [-2, 2], where the points are probably regions of blank sky, the clipped mode is spread over a wider range of values than the clipped median: the slope of the relation in this region is probably greater than 1. |
Beta Was this translation helpful? Give feedback.
You might have to read the code to get the answer to some of these questions. Here is where the iterative clipping is done, for example: https://github.com/kbarbary/sep/blob/master/src/background.c#L456-L491
Sounds like a pretty arbitrary threshold that the authors found "works well in practice". That would be my guess anyway. Source Extractor in general is filled with heuristics that work "pretty well" in practice, but aren't perfect.
Or galaxies, yes.
if you think the region of sky is empty, it's be…