Skip to content

Commit 103fe0d

Browse files
authored
Add JSS citation information (#3381)
1 parent e341cc7 commit 103fe0d

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CITATION.bib

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@article{JSSv107i04,
2+
title={DataFrames.jl: Flexible and Fast Tabular Data in Julia},
3+
volume={107},
4+
url={https://www.jstatsoft.org/index.php/jss/article/view/v107i04},
5+
doi={10.18637/jss.v107.i04},
6+
abstract={DataFrames.jl is a package written for and in the Julia language offering flexible and efficient handling of tabular data sets in memory. Thanks to Julia’s unique strengths, it provides an appealing set of features: Rich support for standard data processing tasks and excellent flexibility and efficiency for more advanced and non-standard operations. We present the fundamental design of the package and how it compares with implementations of data frames in other languages, its main features, performance, and possible extensions. We conclude with a practical illustration of typical data processing operations.},
7+
number={4},
8+
journal={Journal of Statistical Software},
9+
author={Bouchet-Valat, Milan and Kamiński, Bogumił},
10+
year={2023},
11+
pages={1--32}
12+
}

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,9 @@ that is available on GitHub.
3131
[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
3232
[docs-stable-url]: http://dataframes.juliadata.org/stable/
3333

34-
**Citing**: For now, the best way of citing this package is using the [Zenodo link](https://doi.org/10.5281/zenodo.7632427).
34+
**Citing**: We encourage you to cite our work if you have used DataFrames.jl package.
35+
Starring the DataFrames.jl repository on GitHub is also appreciated.
36+
37+
The citation information may be found in the [CITATION.bib](CITATION.bib) file within the repository:
38+
39+
> Bouchet-Valat, M., & Kamiński, B. (2023). DataFrames.jl: Flexible and Fast Tabular Data in Julia. Journal of Statistical Software, 107(4), 1–32. https://doi.org/10.18637/jss.v107.i04

docs/src/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ running with tabular data manipulation using the DataFrames.jl package.
88
For more illustrations of DataFrames.jl usage, in particular in conjunction with
99
other packages you can check-out the following resources
1010
(they are kept up to date with the released version of DataFrames.jl):
11+
* [DataFrames.jl: Flexible and Fast Tabular Data in Julia](https://www.jstatsoft.org/article/view/v107i04) article published in the *Journal of Statistical Software*
1112
* [Data Wrangling with DataFrames.jl Cheat Sheet](https://www.ahsmart.com/pub/data-wrangling-with-data-frames-jl-cheat-sheet/)
1213
* [DataFrames Tutorial using Jupyter Notebooks](https://github.com/bkamins/Julia-DataFrames-Tutorial/)
1314
* [Julia Academy DataFrames.jl tutorial](https://github.com/JuliaAcademy/DataFrames)
@@ -277,7 +278,7 @@ missing please kindly report an issue
277278
during which it is deprecated. The situations where such a breaking change
278279
might be allowed are (still such breaking changes will be avoided if
279280
possible):
280-
281+
281282
* the affected functionality was previously clearly identified in the
282283
documentation as being subject to changes (for example in DataFrames.jl 1.4
283284
release propagation rules of `:note`-style metadata are documented as such);

0 commit comments

Comments
 (0)