| project | R Documentation |
This function projects ENA points onto the rotated space using the rotation matrix. Optionally, metadata can be included in the resulting points matrix.
project(x, rotation = NULL, add.meta = TRUE)
x |
An |
rotation |
Optional. A rotation matrix to use for projection if |
add.meta |
Logical. If |
The input ena.set object with the projected points matrix (and metadata if requested).
# Assuming 'set' is an ena.set object:
data(RS.data)
codes <- c("Data", "Technical.Constraints", "Performance.Parameters",
"Client.and.Consultant.Requests", "Design.Reasoning",
"Collaboration")
units <- c("Condition", "UserName")
horizon <- c("Condition", "GroupName")
enaset <- RS.data |>
accumulate(units, codes, horizon) |>
sphere_norm() |>
center() |>
rotate() |>
project()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.