问题 I would like to fix the positions of the nodes at (1,0), (0,1), (-1,0), (0,-1) and (0,0). However, it does not not work and my Java knowledge is zero (it seems, that here ist the question concering the Java code). Can anybody help? Here is an example: require(visNetwork, quietly = TRUE) nodes <- data.frame(id = 1:5) # x = c(1, 0, -1, 0, 0), # y = c(0, 1, 0, -1, 0)) edges <- data.frame(from = c(1,2), to = c(1,3)) visNetwork(nodes, edges, width = "100%") %>% visNodes(x = c(1, 0, -1, 0, 0), y =