rescale {scan} | R Documentation |
Rescales values of an scdf file
Description
This function scales the measured values of an scdf file. It allows for mean centering and standardization across all cases included in an scdf.
Usage
rescale(data, ..., m = 0, sd = 1)
Arguments
data |
A single-case data frame. See |
... |
Names of variables to be standardized. |
m |
The target mean. If set NULL, it is not changed. |
sd |
The target standard deviation. If set NULL, it is not changed. |
Value
An scdf with the scaled values.
Author(s)
Juergen Wilbert
See Also
Other data manipulation functions:
add_l2()
,
as.data.frame.scdf()
,
as_scdf()
,
fill_missing()
,
moving_median()
,
outlier()
,
ranks()
,
scdf()
,
select_cases()
,
set_vars()
,
shift()
,
smooth_cases()
,
standardize()
,
truncate_phase()
Examples
## Standardize a multiple case scdf and compute an hplm
exampleAB_50 |>
rescale(values, mt) |>
hplm()
[Package scan version 0.65.1 Index]