@@ -500,8 +500,7 @@ def median_combine(
500
500
Parameters
501
501
----------
502
502
median_func : function, optional
503
- Function that calculates median of a `numpy.ma.MaskedArray`.
504
- Default is `numpy.ma.median`.
503
+ Function that calculates median of an array.
505
504
506
505
scale_to : float or None, optional
507
506
Scaling factor used in the average combined image. If given,
@@ -612,19 +611,18 @@ def average_combine(
612
611
Parameters
613
612
----------
614
613
scale_func : function, optional
615
- Function to calculate the average. Defaults to
616
- `numpy.nanmean`.
614
+ Function to calculate the average.
617
615
618
616
scale_to : float or None, optional
619
617
Scaling factor used in the average combined image. If given,
620
618
it overrides `scaling`. Defaults to ``None``.
621
619
622
620
uncertainty_func : function, optional
623
- Function to calculate uncertainty. Defaults to `numpy.ma.std`.
621
+ Function to calculate uncertainty.
624
622
625
623
sum_func : function, optional
626
624
Function used to calculate sums, including the one done to
627
- find the weighted average. Defaults to `numpy.nansum`.
625
+ find the weighted average.
628
626
629
627
Returns
630
628
-------
@@ -706,7 +704,7 @@ def sum_combine(
706
704
it overrides `scaling`. Defaults to ``None``.
707
705
708
706
uncertainty_func : function, optional
709
- Function to calculate uncertainty. Defaults to `numpy.ma.std`.
707
+ Function to calculate uncertainty.
710
708
711
709
Returns
712
710
-------
0 commit comments