#' @importFrom data.table ":="
NULL
## Generate sunburst plot using plotly =======================================
sunburstDF <- function(DF, valueCol = NULL, root.name = "Root"){
colNamesDF <- names(DF)
.SD = .N = .I = .GRP = .BY = ..currentCols = NULL
if(data.table::is.data.table(DF)){
DT <- data.table::copy(DF)
} else {
DT <- data.table::data.table(DF, stringsAsFactors = FALSE)
}
DT[, "root" := root.name]
colNamesDT <- names(DT)
if(is.null(valueCol)){
data.table::setcolorder(DT, c("root", colNamesDF))
} else {
data.table::setnames(DT, valueCol, "values", skip_absent=TRUE)
data.table::setcolorder(DT, c("root", setdiff(colNamesDF, valueCol), "values"))
}
hierarchyCols <- setdiff(colNamesDT, "values")
hierarchyList <- list()
for(i in seq_along(hierarchyCols)){
currentCols <- colNamesDT[1:i]
if(is.null(valueCol)){
currentDT <- unique(DT[, ..currentCols][, "values" := .N, by = currentCols], by = currentCols)
} else {
currentDT <- DT[, lapply(.SD, sum, na.rm = TRUE), by=currentCols, .SDcols = "values"]
}
#currentDT = stats::na.omit(currentDT)
data.table::setnames(currentDT, length(currentCols), "labels")
hierarchyList[[i]] <- currentDT
}
hierarchyDT <- data.table::rbindlist(hierarchyList, use.names = TRUE, fill = TRUE)
parentCols <- setdiff(names(hierarchyDT), c("labels", "values", valueCol))
hierarchyDT[, "parents" := apply(.SD, 1, function(x){data.table::fifelse(all(is.na(x)), yes = NA_character_, no = paste(x[!is.na(x)], sep = ":", collapse = " - "))}), .SDcols = parentCols]
hierarchyDT[, "ids" := apply(.SD, 1, function(x){paste(x[!is.na(x)], collapse = " - ")}), .SDcols = c("parents", "labels")]
hierarchyDT[, c(parentCols) := NULL]
return(hierarchyDT)
}
sunburstPreData <- function(df, changeline){
df = stats::na.omit(df)
df$labels = stringr::str_replace(df$labels, "^.*_Codified","Codified")
df$labels = stringr::str_replace(df$labels, "^.*_NLP","NLP")
df$labels = stringr::str_replace(df$labels, "Ignore_cui","Others")
df$labels = stringr::str_replace(df$labels, ",...",", ...")
df$text = df$labels
label = df$labels[stringr::str_length(df$labels)>5]
label_split = stringr::str_split(label," ")
if(changeline != 99){
label_com = sapply(label_split, function(x){
y = ""
i = 1
k = 0
while(i <= length(x)){
y = paste(y, x[i])
k = k + stringr::str_length(x[i])
if(k>=changeline & i!=length(x)){
y = paste0(y,"<br>")
k = 0
}
i = i + 1
}
return(stringr::str_trim(y,side = "both"))
})
df$text[stringr::str_length(df$labels)>5] = label_com
}
return(df)
}
sunburstPlotly <- function(f1, f2, thr_cos, is_filter,
changeline,rotatelabel,scale_sungh,
node_now, edge_matrix_full,
dict.combine){
node_now_name = dict.combine$Description[match(node_now,dict.combine$Variable)]
edge.ma.now = edge_matrix_full
loc.node_now = match(node_now, rownames(edge.ma.now))
if(!is.na(loc.node_now)){
if(length(node_now_name)>0 & !is.na(node_now_name)){
select.node = node_now
data = edge.ma.now[loc.node_now,]
nodes = names(data[data>thr_cos])
rhd = dict.combine[match(nodes,dict.combine$Variable),
c("Variable","Capinfo2","index01","index02","index1","index2","index3","index4")]
rhd$x = data[data>thr_cos]
if(is_filter == TRUE){
rhd = rhd[rhd$Capinfo2 %in% f1|rhd$Capinfo2 %in% f2,]
}
if(nrow(rhd)>0){
rhd = rhd[order(rhd$index01,rhd$index02,rhd$index1,rhd$index2,
rhd$index3,rhd$index4,rhd$x),]
DF = rhd[,-c(1,2)]
df = sunburstDF(DF,valueCol = "x",root.name = node_now_name)
df = sunburstPreData(df, changeline)
m <- list(
l = 0,r = 0,b = 0,t = 0,pad = 0
)
if(rotatelabel=="Radial"){
plotly::plot_ly(data = df, ids = ~ids, labels= ~labels, parents = ~parents,
text = ~text, values= ~values, type='sunburst', branchvalues = 'total',
hoverinfo = "label", textinfo = "text", textfont = list(color="black"),
insidetextorientation='radial',
width = scale_sungh,
height = scale_sungh)%>%
plotly::layout(autosize = F, margin = m)
}else{
plotly::plot_ly(data = df, ids = ~ids, labels= ~labels, parents = ~parents,
text = ~text, values= ~values, type='sunburst', branchvalues = 'total',
hoverinfo = "label", textinfo = "text", textfont = list(color="black"),
insidetextorientation='"tangential"',
width = scale_sungh,
height = scale_sungh)%>%
plotly::layout(autosize = F, margin = m)
}
}else{
plotly::plot_ly(data = data.frame(ids=c(),labels=c(),parents=c(),text=c(),
values=c()),type='sunburst')%>%
plotly::layout(title = "After filtering, no connected node is left!")
}
}
}else{
plotly::plot_ly(data = data.frame(ids=c(),labels=c(),parents=c(),text=c(),
values=c()),type='sunburst')%>%
plotly::layout(title = "The node you click is not on the interested list!")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.