simulate_robregcc {robregcc} | R Documentation |
Simulated date for testing functions in the robregcc package (sparse setting).
Description
A list of response (y), predictors (X) and sub-cpmposition matrix (C).
Usage
data(simulate_robregcc)
Format
A list with three components:
- X
Compositional predictors.
- y
Outcome with outliers.
- C
Sub-cmposition matrix.
Details
Vector y, response with a certain percentage of observations as outliers.
Matrix X, Compositional predictors.
Source
Similated data
Examples
library(robregcc)
data(simulate_robregcc)
X <- simulate_robregcc$X;
y <- simulate_robregcc$y
C <- simulate_robregcc$C
n <- nrow(X); p <- ncol(X); k <- nrow(C)
[Package robregcc version 1.1 Index]