Prior to the steps below, enter the data as appropriate for the analyses (described elsewhere).
Use a formula to calculate a new vector with the transformed scores.
trOutcome <- Outcome + 1
Create and display a the data set in a frame.
construct(Outcome, trOutcome)
Create a new variable vector containing the standardized scores.
zOutcome <- scale(Outcome)
Create and display the data set in a frame.
construct(Outcome, trOutcome, zOutcome)