Hi,
I have downloaded the network plot as png, using the downloadHandler and this command:
output$downloadNetwork <- downloadHandler(
filename = function() {
"Network.png"
},
content = function(file) {
png(file)
plot(ntwrk, vertex.color = "pink", vertex.size = node_size, edge.width = 1, vertex.label.font = 2, vertex.label = node_label)
dev.off()
}
)
I want to correct what I said in he previous post, as I do not want to save the network, but download it as xgmml file. Is there a way to do that?
Highly appreciate your help!
Best Regards,
Karni Bedirian