Nothing
#' SIGN_Aggregate is a function to reshape the list of pathway scoring, time to death, and event
#' and return a summary list
#' @param ScoreList List of similarity scores identified using different methodologies
#' @param TimeList List of time to event (death) for different groups of patients
#' @param EventList List of event vectors (death or censored) for different groups of patients
#' @return List of scores identified for each sample as well as time to death and event of that sample
SIGN_Aggregate <- function(ScoreList, TimeList, EventList){
MethodNum <- length(ScoreList)
ScoreMat_Agg <- c()
for(MethodIter in 1:MethodNum){
ScoreList_Path <- ScoreList[[MethodIter]]
PathwayNum <- length(ScoreList_Path)
if(PathwayNum > 0){
for(PathwayIter in 1:PathwayNum){
ScoreList_TMP <- ScoreList_Path[[PathwayIter]]
ScoreMat_TMP <- c()
for(ClassIter in 1:length(ScoreList_TMP)){
ScoreMat_TMP <- rbind(ScoreMat_TMP, ScoreList_TMP[[ClassIter]])
}
colnames(ScoreMat_TMP) <- paste(rep(names(ScoreList)[MethodIter], length(colnames(ScoreMat_TMP))),
rep(names(ScoreList_Path)[PathwayIter], length(colnames(ScoreMat_TMP))),
colnames(ScoreMat_TMP), sep = "_")
ScoreMat_Agg <- cbind(ScoreMat_Agg, ScoreMat_TMP)
}
}
}
TimeVec <- c()
EventVec <- c()
for(ClassIter in 1:length(TimeList)){
TimeVec <- c(TimeVec, TimeList[[ClassIter]])
EventVec <- c(EventVec, EventList[[ClassIter]])
}
SIGN_Agg_Out <- list(ScoreMat_Agg, TimeVec, EventVec)
names(SIGN_Agg_Out) <- c("Scores", "Time", "Event")
return(SIGN_Agg_Out)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.