-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathextractStats.dev.R
42 lines (36 loc) · 1.41 KB
/
extractStats.dev.R
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
#' extract some stats from a portfolio list run with ROI via
#' \code{\link{optimize.portfolio}}
#'
#' This function will take everything in the objective_measures slot and \code{unlist} it.
#' This may produce a very large number of columns or strange column names.
#'
#' @param object list returned by optimize.portfolio
#' @param prefix prefix to add to output row names
#' @param ... any other passthru parameters
#' @seealso \code{\link{optimize.portfolio}}
#' @export
extractStats.optimize.portfolio.ROI <- function(object, prefix=NULL, ...) {
trow<-c(out=object$out, object$weights)
result<-trow
rnames<-c('out',paste('w',names(object$weights),sep='.'))
names(result)<-rnames
return(result)
}
#' extract some stats from a portfolio list run with pso via
#' \code{\link{optimize.portfolio}}
#'
#' This function will take everything in the objective_measures slot and \code{unlist} it.
#' This may produce a very large number of columns or strange column names.
#'
#' @param object list returned by optimize.portfolio
#' @param prefix prefix to add to output row names
#' @param ... any other passthru parameters
#' @seealso \code{\link{optimize.portfolio}}
#' @export
extractStats.optimize.portfolio.pso <- function(object, prefix=NULL, ...) {
trow<-c(out=object$out, object$weights)
result<-trow
rnames<-c('out',paste('w',names(object$weights),sep='.'))
names(result)<-rnames
return(result)
}