Enter the data in vectors that assign variable names.
Outcome1 <- c(0, 0, 3, 5)
Outcome2 <- c(4, 7, 4, 9)
Create and display a data frame to view the data set.
RepeatedData <- construct(Outcome1, Outcome2)
RepeatedData
If your data set has more than two variables, simply be sure to add more variables to account for the additional measurements. (You may want to name the data frame something unique to keep it separate from the other data sets.)