|
| 1 | +========= |
| 2 | +Citations |
| 3 | +========= |
| 4 | + |
| 5 | +If you find this package useful in your research, please consider citing the |
| 6 | +relevant papers below: |
| 7 | + |
| 8 | +Observational Data |
| 9 | +================== |
| 10 | + |
| 11 | +Each observational dataset should come with it's own ``source`` metadata, |
| 12 | +typically in the form of a |
| 13 | +`bibcode <https://adsabs.harvard.edu/help/actions/bibcode>`_ identifier. |
| 14 | + |
| 15 | +While these can be accessed directly through the metadata attribute of each |
| 16 | +``Dataset``: |
| 17 | + |
| 18 | +.. code-block:: python |
| 19 | + |
| 20 | + >>> dset = obs['proper_motion/gedr3'] |
| 21 | + >>> dset.mdata['source'] |
| 22 | + '2021MNRAS.505.5978V' |
| 23 | +
|
| 24 | +``GCfit`` also comes equipped with some utility functions to automatically |
| 25 | +convert bibcodes to useful formats, like bibtex. This functionality requires |
| 26 | +the `ads <https://github.com/andycasey/ads>`_ package to be installed correctly, |
| 27 | +with a valid ``ADS_DEV_KEY`` set. |
| 28 | + |
| 29 | +The ``Observations`` and ``Dataset`` objects can provide some of the available |
| 30 | +formats directly: |
| 31 | + |
| 32 | +.. code-block:: python |
| 33 | +
|
| 34 | + >>> sources = obs.get_sources() |
| 35 | + >>> print(sources['proper_motion/gedr3']) |
| 36 | + @ARTICLE{2021MNRAS.505.5978V, |
| 37 | + author = {{Vasiliev}, Eugene and {Baumgardt}, Holger}, |
| 38 | + ... |
| 39 | + adsnote = {Provided by the SAO/NASA Astrophysics Data System} |
| 40 | + } |
| 41 | + >>> dset.cite() |
| 42 | + 'Vasiliev & Baumgardt (2021)' |
| 43 | +
|
| 44 | +Or the utility methods can be used directly: |
| 45 | + |
| 46 | +.. code-block:: python |
| 47 | +
|
| 48 | + >>> print(fitter.util.bibcode2bibtex(dset.mdata['source'])) |
| 49 | + @ARTICLE{2021MNRAS.505.5978V, |
| 50 | + author = {{Vasiliev}, Eugene and {Baumgardt}, Holger}, |
| 51 | + ... |
| 52 | + adsnote = {Provided by the SAO/NASA Astrophysics Data System} |
| 53 | + } |
| 54 | + >>> fitter.util.bibcode2cite(dset.mdata['source']) |
| 55 | + 'Vasiliev & Baumgardt (2021)' |
| 56 | +
|
| 57 | +
|
| 58 | +Models |
| 59 | +====== |
| 60 | + |
| 61 | +The equilibrium models used should be cited from the ``limepy`` paper: |
| 62 | +`2015MNRAS.454..576G <https://adsabs.harvard.edu/abs/2015MNRAS.454..576G>`_. |
| 63 | + |
| 64 | + |
| 65 | +Samplers |
| 66 | +======== |
| 67 | + |
| 68 | +If you are using the MCMC fitter (``MCMC_fit``), the sampler source software |
| 69 | +should be cited as the ``emcee`` paper: |
| 70 | +`2013PASP..125..306F <https://adsabs.harvard.edu/abs/2013PASP..125..306F>`_. |
| 71 | +Specific proposal algorithm citations can be found within. |
| 72 | + |
| 73 | +Nested sampling fits (``nested_fit``) should cite the ``dynesty`` paper: |
| 74 | +`2020MNRAS.493.3132S <https://adsabs.harvard.edu/abs/2020MNRAS.493.3132S>`_. |
| 75 | +For specific bound and sampler algorithm sources, see the |
| 76 | +`dynesty documentation <https://dynesty.readthedocs.io/en/latest/references.html>`_. |
| 77 | + |
| 78 | +Other |
| 79 | +===== |
| 80 | + |
| 81 | +If Bayesian hyperparameters are used (``hyperparams=True`` in any fitting), |
| 82 | +the source paper |
| 83 | +`2002MNRAS.335..377H <https://adsabs.harvard.edu/abs/2002MNRAS.335..377H>`_ |
| 84 | +can be cited. |
| 85 | + |
| 86 | +``GCfit`` makes extensive use of the |
| 87 | +`numpy <https://adsabs.harvard.edu/abs/2020Natur.585..357H>`_, |
| 88 | +`scipy <https://adsabs.harvard.edu/abs/2020NatMe..17..261V>`_ and |
| 89 | +`astropy <https://adsabs.harvard.edu/abs/2018AJ....156..123A>`_ |
| 90 | +libraries. All plotting functionality is enabled by the |
| 91 | +`matplotlib <https://adsabs.harvard.edu/abs/2007CSE.....9...90H>`_ library. |
| 92 | +Parallelization pools are handled by the |
| 93 | +`schwimmbad <https://adsabs.harvard.edu/abs/2017JOSS....2..357P>`_ library |
0 commit comments