gpt4 book ai didi

r - Shiny 的自定义输出不呈现

转载 作者:行者123 更新时间:2023-12-01 16:38:37 27 4
gpt4 key购买 nike

我正在尝试将来自 D3.js 的网络可视化绑定(bind)到 Shiny 中的自定义输出。出于某种原因,似乎我的渲染函数没有被调用。这是我的代码:

rbindings.js

var forceNetworkOB = new Shiny.OutputBinding();

forceNetworkOB.find = function(scope) {
return $(scope).find("svg.rio-force-network");
};

forceNetworkOB.renderValue = function(el, graph) {

alert('rendering')

//actual rendering code here...

};

Shiny.outputBindings.register(forceNetworkOB, "jumpy.forceNetworkOB");

自定义IO.R

renderForceNetwork <- function(expr, env=parent.frame(), quoted=FALSE) {

func <- exprToFunction(expr, env, quoted)

function() {

# Never called
browser()

graph <- func()

list(nodes = graph$nodes,
links = graph$edges
)
}
}

forceNetwork <- function(id, width = '400px', height = '400px') {

tag('svg', list(id = id, class = 'rio-force-network', width = width, height = height))

}

ui.R

library(shiny)
source('customIO.R')

shinyUI(fluidPage(

tags$script(src = 'js/d3.min.js'),
tags$script(src = 'js/rbindings.js'),

titlePanel('Network Visualization'),

tabsetPanel(
tabPanel('D3.js Force Layout',
forceNetwork('vis.force', width = '800px', height = '800px'),
)
)

))

和server.R

library(shiny)

source('cytoscape.R')
source('customIO.R')

shinyServer(function(session, input, output) {


# Load the network
network <- networkFromCytoscape('network.cyjs')

output$vis.force <- renderForceNetwork({

# Never called
print('rendering')
browser()

list(
nodes = data.frame(name = network$nodes.data$Label_for_display, group = rep(1, nrow(network$nodes.data))),
edges = data.frame(from = network$edges[,1], to = network$edges[,2])
)

})

})

从评论中可以看出,我的 R 渲染函数中的 browser() 行从未被调用,js 渲染函数中的 alert() 也是如此。通过一些 js 调试,我可以看到我的自定义绑定(bind)正确地提供了要渲染的 svg 元素及其 id。这可能很简单,但我无法弄明白。

最佳答案

好吧,虽然代码看起来都是合法的,但您确实必须深入研究 Shiny 的源代码才能找到罪魁祸首。

当 Shiny 初始化时,它调用 initShiny() ,然后调用 bindOutputs .现在,这是 bindOutputs 的内容函数看起来像:

function bindOutputs(scope) {

if (scope === undefined)
scope = document;

scope = $(scope);

var bindings = outputBindings.getBindings();

for (var i = 0; i < bindings.length; i++) {
var binding = bindings[i].binding;
var matches = binding.find(scope) || [];
for (var j = 0; j < matches.length; j++) {
var el = matches[j];
var id = binding.getId(el);

// Check if ID is falsy
if (!id)
continue;

var bindingAdapter = new OutputBindingAdapter(el, binding);
shinyapp.bindOutput(id, bindingAdapter);
$(el).data('shiny-output-binding', bindingAdapter);
$(el).addClass('shiny-bound-output'); // <- oops!
}
}

// Send later in case DOM layout isn't final yet.
setTimeout(sendImageSize, 0);
setTimeout(sendOutputHiddenState, 0);
}

我用<- oops标记的行是导致所有问题的原因。这确实不是 Shiny 本身 的错误:这行代码依赖于 jQuery添加一个类到 el ,这是 svg您使用 forceNetwork() 创建的 DOM 元素功能。

类(class)shiny-bound-output对于实际绑定(bind)的工作很重要。

问题是$.addClass不适用于 <svg> .作为一个很好的引用,see this articlethis question on stackoverflow .

因此,您的 <svg>元素缺少所需的 shiny-bound-output将使您的自定义类 OutputBinding才能正常运行。


解决方案:

不要使用 <svg>作为输出的容器。使用 <div>反而。这意味着,你应该改变你的 forceNetwork功能:

forceNetwork <- function(id, width = '400px', height = '400px') {    
tag('div', list(id = id, class = 'rio-force-network', width = width, height = height))
}

您可以轻松地附加 <svg>使用 d3.select(...).append('svg')并在那里设置宽度和高度。

(记得同时修改 find() 中的 rbindings.js 函数)。


最后一句话

如果你以某种方式添加 d3.select(...).append('svg')到你的javascript代码,记得clear() <div>输出绑定(bind)中的容器 renderValue()在实际 d3 绘图之前的功能。否则每次renderForceNetwork被调用,它会添加一个新的 <svg>元素到你的<div>容器。

关于r - Shiny 的自定义输出不呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25231016/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com