Citation

Author

Mahesh Divakaran & Dr. Jayadevan Sreedharan

Citing R

Many people have invested huge amounts of time and energy making R the great piece of software you’re now using. If you use R in your work (and we hope you do) please remember to give appropriate credit by citing R. To get the most up to date citation for R you can use the citation() function.

citation()
## To cite R in publications use:
## 
##   R Core Team (2023). _R: A Language and Environment for Statistical
##   Computing_. R Foundation for Statistical Computing, Vienna, Austria.
##   <https://www.R-project.org/>.
## 
## A BibTeX entry for LaTeX users is
## 
##   @Manual{,
##     title = {R: A Language and Environment for Statistical Computing},
##     author = {{R Core Team}},
##     organization = {R Foundation for Statistical Computing},
##     address = {Vienna, Austria},
##     year = {2023},
##     url = {https://www.R-project.org/},
##   }
## 
## We have invested a lot of time and effort in creating R, please cite it
## when using it for data analysis. See also 'citation("pkgname")' for
## citing R packages.

If you want to cite a particular package you’ve used for your data analysis.

citation(package = "SASdates")
## To cite package 'SASdates' in publications use:
## 
##   Divakaran M (2022). _SASdates: Convert the Dates to 'SAS' Formats_. R
##   package version 0.1.0.
## 
## A BibTeX entry for LaTeX users is
## 
##   @Manual{,
##     title = {SASdates: Convert the Dates to 'SAS' Formats},
##     author = {Mahesh Divakaran},
##     year = {2022},
##     note = {R package version 0.1.0},
##   }