Nothing
gallery <- gallery_rd3
gallery2 <- function(...){
warning("Using 'gallery2' function is deprecated. Use 'exhibit' instead.")
do.call(gallery2_rd3,list(...))
}
exhibit <- gallery2_rd3
netGalleryWrapper <- function(net){
if(!is.null(net$options$nodeTypes) && !is.null(net$options$nodeText)){
net$nodes[[net$options$nodeText]] <- sapply(seq_len(nrow(net$nodes)),function(i){
ntext <- net$nodes[i,net$options$nodeText]
if(!is.na(ntext) && grepl('class="info-template"',ntext,fixed=TRUE)){
name <- net$nodes[i,net$options$nodeName]
relatives <- list()
for(type in net$options$nodeTypes){
aux <- character(0)
if(length(net$nodes_relatives)){
aux <- net$nodes_relatives[[i]][net$nodes_relativesTypes2[[i]]==type]
}else{
if(name %in% net$tree[,1]){
aux <- net$tree[net$tree[,1]==name & net$tree[,4]==type,2]
}
if(name %in% net$tree[,2]){
aux <- net$tree[net$tree[,2]==name & net$tree[,3]==type,1]
if(!length(aux)){
parent <- net$tree[net$tree[,2]==name,1]
for(p in parent){
aux <- c(aux,net$tree[net$tree[,1]==p & net$tree[,4]==type,2])
}
}
}
}
if(length(aux)){
aux <- aux[!is.na(aux)]
aux <- unique(aux)
aux <- aux[aux!=name]
if(length(aux)){
label <- aux
if(!is.null(net$options$nodeLabel) && (net$options$nodeLabel!=net$options$nodeName)){
labels <- net$nodes[[net$options$nodeLabel]]
names(labels) <- net$nodes[[net$options$nodeName]]
label <- labels[aux]
}
indices <- seq_len(nrow(net$nodes))-1
names(indices) <- net$nodes[[net$options$nodeName]]
aux <- indices[aux]
aux <- paste0('<span nodename="',aux,'">',label,'</span>')
aux <- aux[order(label)]
relatives[[type]] <- paste0(aux,collapse="; ")
}
}
}
if(length(relatives)){
relatives <- paste0(paste0('<b>',names(relatives),':</b> ',relatives),collapse="<br/>")
ntext <- sub('<p class="template-text">',paste0('<div class="tree-relatives">',relatives,'</div><p class="template-text">'),ntext,fixed=TRUE)
}
}
return(ntext)
})
}
class(net) <- c("netGallery",class(net))
return(net)
}
netGallery <- function(tree, deep = FALSE, initialType = NULL, tableformat = FALSE, ...){
net <- treeGallery_rd3(tree, deep, initialType, tableformat, ...)
return(netGalleryWrapper(net))
}
netGallery2 <- function(tree, initialType = NULL, tableformat = FALSE, ...){
warning("Using 'netGallery2' function is deprecated. Use 'netExhibit' instead.")
net <- treeGallery2_rd3(tree, initialType, tableformat, ...)
return(netGalleryWrapper(net))
}
netExhibit <- function(tree, initialType = NULL, tableformat = FALSE, ...){
net <- treeGallery2_rd3(tree, initialType, tableformat, ...)
return(netGalleryWrapper(net))
}
asGallery <- function(net){
if(inherits(net,"network_rd3")){
options <- net$options
gallery <- gallery_rd3(nodes = net$nodes, name = options$nodeName, label = options$nodeLabel,
color = options$nodeColor, border = options$nodeBorder, ntext = options$nodeText, info = options$nodeInfo, image = options$imageItems,
zoom = options$zoom, main = options$main, note = options$note,
showLegend = options$showLegend, frequencies = options$frequencies,
help = options$help, helpOn = options$helpOn, cex = options$cex, language = options$language)
return(gallery)
}else{
stop("net: must be a network object")
}
}
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.