Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cite various python packages in paper

We have a working tool built off of various packages in python. I am not sure how to cite these packages for a paper I am working on. How do I properly cite python packages? One of them have a way they ask us to cite them via a book. Most say nothing on citations that I can find. Is there a standard?

like image 970
Jacob Ian Avatar asked Nov 30 '16 20:11

Jacob Ian


People also ask

How do you cite software in Python?

For open-source software like Python, you could name the organization or give the website: ...for the simulations we used the Python programming language (Python Software Foundation, https://www.python.org/).

Should you cite NumPy?

If NumPy has been significant in your research, and you would like to acknowledge the project in your academic publication, we suggest citing the following paper: Harris, C.R., Millman, K.J., van der Walt, S.J. et al. Array programming with NumPy.


2 Answers

This link has the preferred citation method for scipy and its related packages. If you aren't using one of these packages you could follow the style they use.

https://scipy.org/citing-scipy/

like image 58
James Urban Avatar answered Sep 18 '22 09:09

James Urban


It is the same as for every software. Search for reference preferred by authors on the Internet. Else try to find a manual. If there is no manual, cite it directly as "software" or cite webpage with documentation.

A lot of preferred citations for Python packages are at the citebay.com, for example:

Numpy: http://citebay.com/how-to-cite/numpy/

Pandas: http://citebay.com/how-to-cite/pandas/

like image 33
matousc Avatar answered Sep 21 '22 09:09

matousc