We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43c816c commit c1ef971Copy full SHA for c1ef971
pynch/mass_table.py
@@ -107,6 +107,9 @@ def _combine_all_data(self) -> pd.DataFrame:
107
df.loc[(df.Symbol == "C") & (df.A == 12), "NubaseRelativeError"] = 0.0
108
df.loc[(df.Symbol == "C") & (df.A == 12), "AMERelativeError"] = 0.0
109
110
+ # 198Au has a typo in it's decay mode in the 2012 table. It is down as '-'
111
+ df.loc[(df.A == 198) & (df.Z == 79) & (df.TableYear == 2012), 'Decay'] = "B-"
112
+
113
return df
114
115
def _do_indexing(self) -> None:
0 commit comments