Learn R Programming

⚠️There's a newer version (0.6.1) of this package.Take me there.

Efficient and Publishing-Oriented Workflow for Psychological Science

psycho

Namepsycho
Stable
Documentation
Examples
Questions
Authors

Goal

The main goal of the psycho package is to provide tools for psychologists, neuropsychologists and neuroscientists, to transform statistical outputs into something readable that can be, almost directly, copied and pasted into a report. It also implements various functions, from very useful ones (correlation(), normalize()) to miscellaenous ones (find_season()).

Contribute

Want to get involved in the developpment of an open-source software and improve psychological science? Join us!

  • You need some help? You found a bug? You would like to request a new feature? Just open an issue :relaxed:

  • Want to add a feature? Correct a bug? You're more than welcome to contribute!

  • Looking for help to implement the analyze method for t.test, cor.test and anova.

Features

The psycho package can already do the following:

  • Normalize your data
  • Enlight you on how many factors to retain for a PCA
  • Give you some clinically relevant info on a participant's score
  • Compute complex correlation matrices
  • Help you in the interpretation of various models (lme4, stan_lmer)

General Workflow

The package revolves around the psychobject. Main functions from the package return this type, and the analyze() function transforms other R objects into psychobjects. Four functions can then be applied on a psychobject: summary(), print(), plot() and values().

Installation

  • To get the stable version from CRAN, run the following commands in your R console:
install.packages("psycho")
library("psycho")
  • To get the latest development version, run the following:
install.packages("devtools")
library("devtools")
install_github("neuropsychology/psycho.R")
library("psycho")

Copy Link

Version

Install

install.packages('psycho')

Monthly Downloads

1,346

Version

0.0.8

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Dominique Makowski

Last Published

January 10th, 2018

Functions in psycho (0.0.8)

find_season

Find season of dates.
format_digit

Format digits.
hdi

Highest Density Intervals (HDI).
interpret_d

Return the interpretation of a Cohen's d or a standardized coefficient following Cohen (1988).
analyze.merModLmerTest

Analyze merModLmerTest objects.
analyze.stanreg

Analyze stanreg objects.
n_factors

Find Optimal Factor Number.
analyze

Analyze objects.
analyze.glmerMod

Analyze glmerMod objects.
plot.psychobject

Plot the results.
print.psychobject

Print the results.
format_p

Format p values.
format_string

Tidyverse-friendly sprintf.
assess

Compare a score to a parent population.
correlation

Multiple Correlations.
summary.psychobject

Print the results.
values

Extract values as list.
normalize

Normalize (scale and reduce) numeric variables.