We are using aluresViz package of R. This package provide a function plot(). the function has argument interactive = TRUE ,which make it interactive so we want to convert this interactive into html widget .Here we use this method..it not working.
htmlwidgets::saveWidget(p, plotlyoutput, selfcontained = FALSE)
答案 0 :(得分:2)
# save a plot as a html page
p <- plotly_arules(rules)
htmlwidgets::saveWidget(p, "arules.html", selfcontained = FALSE)
browseURL("arules.html")
# interactive matrix visualization
plotly_arules(rules, method = "matrix")