We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2034063 commit 7a6ec78Copy full SHA for 7a6ec78
1 file changed
Metallicity_Stack_Commons/analysis/error_prop.py
@@ -48,8 +48,8 @@ def replace_oiii4363(flux_file: str, detection: np.ndarray,
48
49
flux_limit = OIII4363_flux_limit(flux_file, log=log)
50
51
- non_det = np.where(detection == 0.5)[0]
52
- flux_dict[line_name_short['4363']][non_det] = flux_limit[non_det]
+ rlimit = np.where(detection == 0.5)[0]
+ flux_dict[line_name_short['4363']][rlimit] = flux_limit[rlimit]
53
54
return flux_dict
55
0 commit comments