QR_var_manipulation {JDCruncheR} | R Documentation |
Editing the indicators list
Description
Functions to remove indicators (remove_indicators()
) or retrain some indicators only (retain_indicators()
)
from QR_matrix
or mQR_matrix
objects. The series names (column "series") cannot be removed.
Usage
remove_indicators(x, ...)
retain_indicators(x, ...)
Arguments
x |
a |
... |
names of the variable to remove (or keep) |
Value
remove_indicators()
returns the same object x
reduced by the flags and variables used as arguments ...
So if the input x
is a QR_matrix, an object of class QR_matrix is returned.
If the input x
is a mQR_matrix, an object of class mQR_matrix is returned.
See Also
Other var QR_matrix manipulation:
add_indicator()
,
recode_indicator_num()
Examples
# Path of matrix demetra_m
demetra_path <- file.path(
system.file("extdata", package = "JDCruncheR"),
"WS/ws_ipi/Output/SAProcessing-1",
"demetra_m.csv"
)
# Extract the quality report from the demetra_m file
QR <- extract_QR(demetra_path)
# Compute the score
QR <- compute_score(QR, n_contrib_score = 2)
# Retain indicators
retain_indicators(QR, "score", "m7") # retaining "score" and "m7"
retain_indicators(QR, c("score", "m7")) # Same
# Remove indicators
QR <- retain_indicators(QR, "score") # removing "score"
extract_score(QR) # is NULL because we removed the score indicator
[Package JDCruncheR version 0.2.4 Index]