You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Or how do the mass excess of gold vary across the isotropic chain according to NUBASE in the most recent table for both experimentally measured and theoretical values
64
+
Or how does the mass excess of gold vary across the isotopic chain according to NUBASE in the most recent table for both experimentally measured and theoretical values
65
65
```python
66
66
>>> df.query("TableYear == 2020 and Symbol == 'Au'")[['A', 'NUBASEMassExcess', 'NUBASEMassExcessError', 'Experimental']]
67
67
A NUBASEMassExcess NUBASEMassExcessError Experimental
@@ -115,7 +115,15 @@ TableYear
115
115
116
116
If you have ideas for additional functionality or find bugs please create an [issue](https://github.com/php1ic/nuclearmasses/issues) or better yet a [pull request](https://github.com/php1ic/nuclearmasses/pulls).
117
117
118
+
We use a combination of [isort](https://pycqa.github.io/isort/), [ruff](https://docs.astral.sh/ruff/) and [mypy](https://www.mypy-lang.org/) to keep things tidy and hopefully catch errors and bugs before they happen.
119
+
The command below returns no errors or issues so should be run after any code changes.
120
+
We might add a CI pipeline in the future, but for the moment, it's a manual process.
121
+
```bash
122
+
isort .&& ruff format && ruff check && mypy nuclearmasses
123
+
```
124
+
118
125
## Known issues
126
+
119
127
-[#5](https://github.com/php1ic/nuclearmasses/issues/5) The half life from the NUBASE data is stored as the individual elements, a column with the value in seconds would be useful
0 commit comments