---
title: "Data Science for Psychologists (ds4psy)"
output: rmarkdown::html_vignette
pdf_document:
latex_engine: xelatex
vignette: >
%\VignetteIndexEntry{ds4psy}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---
```{r preamble_ds4psy, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
**Welcome** to the R package **ds4psy** — a software companion to the books and courses
[Data Science for Psychologists](https://bookdown.org/hneth/ds4psy/) and
[Introduction to Data Science](https://bookdown.org/hneth/i2ds/).
This R package provides datasets and functions used in the book and course.
Its source code is hosted at .
These books and courses introduce the principles and methods of data science for students of psychology and other biological or social sciences.
The books are available at and .
## The ds4psy and i2ds books, courses, and R package
The **ds4psy** book and course provide an introduction to data science that is tailored to the needs of psychologists, but is also suitable for students of the humanities and other biological or social sciences. The **i2ds** book and corresponding courses provide similar contents in a more extensive and updated form.
The **audience** of these materials typically has some knowledge of statistics, but rarely an idea how data is prepared and shaped to allow for statistical testing.
By using various data types and working with many examples, we teach tools for transforming, summarizing, and visualizing data. By keeping our eyes open for the perils of misleading representations, the book fosters fundamental skills of data literacy and cultivates reproducible research practices that enable and precede any practical use of statistics.
The R package **ds4psy** primarily provides datasets, but also functions for data generation and manipulation (e.g., of text and time data) and graphics that are used in the book and its exercises. All functions included in **ds4psy** are designed to be explicit and instructive, rather than efficient or elegant.
## Installation
The current release of **ds4psy** is available from [CRAN](https://CRAN.R-project.org/) at :
```{r install_CRAN, echo = TRUE, eval = FALSE}
install.packages('ds4psy') # install ds4psy from CRAN client
library('ds4psy') # load to use the package
```
The current development version can be installed from its [GitHub](https://github.com) repository at :
```{r install_github, echo = TRUE, eval = FALSE}
# install.packages('devtools') # (if not installed yet)
devtools::install_github('hneth/ds4psy')
library('ds4psy') # load to use the package
```
## Resources
This package and the corresponding books and courses are still being developed and are updated as new materials become available.
- The current version of [Introduction to Data Science](https://bookdown.org/hneth/i2ds/) is available online at .
- A version of [Data science for psychologists](https://bookdown.org/hneth/ds4psy/) is available online at .
- The current R package **ds4psy** is available at .
These books and courses were originally based on the classic textbook:
- Wickham, H., & Grolemund, G. (2017).
_R for data science: Import, tidy, transform, visualize, and model data._
Sebastopol, Canada: O'Reilly Media, Inc. (available online at )
but provide more **base** R and less **tidyverse** content.
- For **ds4psy** sources, there are two GitHub repositories to be distinguished:
- The repository for the [ds4psy book](https://bookdown.org/hneth/ds4psy/) is (with an additional suffix `_book`).
- The repository for the [ds4psy package](https://github.com/hneth/ds4psy/) is .
## About
If you find these materials useful, or want to adopt or alter them for your purposes, please [let me know](https://spds.uni-konstanz.de//hans-neth).
### Citation
To cite **ds4psy** in derivations and publications, please use:
- Neth, H. (2025). ds4psy: Data Science for Psychologists.
Social Psychology and Decision Sciences, University of Konstanz, Germany.
Textbook and R package (version 1.1.0, September 12, 2025).
Retrieved from .
[https://doi.org/10.5281/zenodo.7229812](https://doi.org/10.5281/zenodo.7229812)
A **BibTeX** entry for LaTeX users is:
```{r pkg-citation, echo = TRUE, eval = FALSE, comment = "", highlight = FALSE}
@Manual{ds4psy,
title = {ds4psy: Data Science for Psychologists},
author = {Hansjörg Neth},
year = {2025},
organization = {Social Psychology and Decision Sciences, University of Konstanz},
address = {Konstanz, Germany},
note = {R package (version 1.1.0, September 12, 2025); Textbook at .},
url = {https://CRAN.R-project.org/package=ds4psy},
doi = {10.5281/zenodo.7229812}
}
```
### License
**Data science for psychologists** (**ds4psy**) by Hansjörg Neth is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
[Updated `r format(Sys.time(), "%Y-%m-%d")` by [hn](https://neth.de).]