目前,当我尝试使用visNetwork在Power BI中生成我的R visual(它在R Studio中工作正常)时,它告诉我没有生成图表。根据我的研究,我的理解是,这是因为Power BI目前不支持HTML视图,而我的图形是以HTML格式生成的。然而,在我暂停此项目之前,我想确认我的这个假设,看看是否有任何变通方法。提前致谢。
答案 0 :(得分:0)
我们可以在power BI中构建RHTML视图。
所以你得到你的R视觉的html视图
答案 1 :(得分:0)
将您用R编写的代码复制/粘贴到Power Bi R脚本中将不起作用。
向Power Bi显示视觉效果的唯一方法是首先创建R代码的应用。有关如何创建r型自定义视觉的更多信息,建议您访问以下网站:https://github.com/Microsoft/PowerBI-visuals/tree/master/RVisualTutorial/TutorialFunnelPlot。
此外,使用HTML输出创建基于r的自定义视觉的本质是在脚本的开头和脚本的末尾添加以下代码:
# For Example:
source('./r_files/flatten_HTML.r')
library(ggplot2)
############### Library Declarations ###############
libraryRequireInstall("ggplot2");
####################################################
################### Actual code ####################
# Enter your manipulation of the code in this section
g <- ggplot(yourdata)
############# Create and save widget ###############
internalSaveWidget(g, 'out.html');
####################################################
我希望这可以为您澄清一些事情。
祝你好运!