1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU Library General
# Public License along with this library; if not, write to the
# Free Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
################################################################################
# FUNCTION: DESCRIPTION:
# assetsArrange Rearranges the columns in a deta set of assets
# FUNCTION: DESCRIPTION:
# pcaArrange Returns PCA correlation ordered column names
# hclustArrange Returns hierarchical clustered column names
# abcArrange Returns sorted column names
# orderArrange Returns ordered column names
# sampleArrange Returns sampled column names
# statsArrange Returns statistically rearranged column names
################################################################################
assetsArrange <-
function(x, method = c("pca", "hclust", "abc"), ...)
{
# A function implemented by Diethelm Wuertz
# Description:
# Returns ordered column names of a time Series
# Arguments:
# x - S4 object of class 'timeSeries'
# FUNCTION:
# Settings:
method <- match.arg(method)
FUN <- paste(method, "Arrange", sep = "")
arrange <- match.fun(FUN)
# Return Value:
arrange(x, ...)
}
# ------------------------------------------------------------------------------
pcaArrange <-
function(x, robust = FALSE, ...)
{
# A function implemented by Diethelm Wuertz
# Description:
# Returns PCA correlation ordered column names
# Arguments:
# x - S4 object of class 'timeSeries'
# Notes:
# Requires package "robustbase".
# FUNCTION:
# Order:
if (robust) {
x.cor <- robustbase::covMcd(as.matrix(x), cor = TRUE, ...)$cor
} else {
x.cor <- cor(as.matrix(x), ...)
}
x.eigen <- eigen(x.cor)$vectors[,1:2]
e1 <- x.eigen[, 1]
e2 <- x.eigen[, 2]
Order <- order(ifelse(e1 > 0, atan(e2/e1), atan(e2/e1)+pi))
ans <- colnames(as.matrix(x))[Order]
# Return Value:
ans
}
# ------------------------------------------------------------------------------
hclustArrange <-
function(x, method = c("euclidean", "complete"), ...)
{
# A function implemented by Diethelm Wuertz
# Description:
# Returns hierarchical clustered column names
# Arguments:
# x - S4 object of class 'timeSeries'
# ...
# method - the agglomeration method to be used. This should
# be (an unambiguous abbreviation of) one of "ward", "single",
# "complete", "average", "mcquitty", "median" or "centroid".
# FUNCTION:
# Order:
Order <- hclust(
dist(t(as.matrix(x)),
method = method[1]),
method = method[2], ...)$order
ans <- colnames(as.matrix(x))[Order]
# Return Value:
ans
}
# ------------------------------------------------------------------------------
abcArrange <-
function(x, ...)
{
# A function implemented by Diethelm Wuertz
# Description:
# Returns sorted column names of a time Series
# Arguments:
# x - S4 object of class 'timeSeries'
# FUNCTION:
# Sort:
ans <- sort(colnames(as.matrix(x)), ...)
# Return Value:
ans
}
# ------------------------------------------------------------------------------
orderArrange <-
function(x, ...)
{
# A function implemented by Diethelm Wuertz
# Description:
# Returns ordered column names of a time Series
# Arguments:
# x - S4 object of class 'timeSeries'
# FUNCTION:
# Order:
ans <- order(colnames(as.matrix(x)), ...)
# Return Value:
ans
}
# ------------------------------------------------------------------------------
sampleArrange <-
function(x, ...)
{
# A function implemented by Diethelm Wuertz
# Description:
# Returns sampled column names of a time Series
# Arguments:
# x - S4 object of class 'timeSeries'
# FUNCTION:
# Sample:
ans <- sample(colnames(as.matrix(x)), ...)
# Return Value:
ans
}
# ------------------------------------------------------------------------------
statsArrange <-
function(x, FUN = colMeans, ...)
{
# A function implemented by Diethelm Wuertz
# Description:
# Returns statistically rearranged column names
# Arguments:
# x - S4 object of class 'timeSeries'
# Note:
# Example of function Candidates:
# colStats calculates column statistics,
# colSums calculates column sums,
# colMeans calculates column means,
# colSds calculates column standard deviations,
# colVars calculates column variances,
# colSkewness calculates column skewness,
# colKurtosis calculates column kurtosis,
# colMaxs calculates maximum values in each column,
# colMins calculates minimum values in each column,
# colProds computes product of all values in each column,
# colQuantiles computes quantiles of each column.
# FUNCTION:
# Apply colStats Function:
fun <- match.fun(FUN)
Sort <- sort(fun(x, ...))
Order <- names(Sort)
ans <- colnames(as.matrix(x)[, Order])
attr(ans, "control") <- Sort
# Return Value:
ans
}
################################################################################
|