is.standardized: Check if a dataframe is standardized.

Description Usage Arguments Value Author(s) Examples

View source: R/miscellaneous.R

Description

Check if a dataframe is standardized.

Usage

1
is.standardized(df, tol = 0.1)

Arguments

df

A dataframe.

tol

The error treshold.

Value

bool.

Author(s)

Dominique Makowski

Examples

1
2
3
4
5
6
7
8
library(psycho)
library(effectsize)

df <- psycho::affective
is.standardized(df)

dfZ <- effectsize::standardize(df)
is.standardized(dfZ)

psycho documentation built on Jan. 19, 2021, 9:07 a.m.