I'm trying to create a Network plot but it doesn't seem to work. Here is my code
graph_from_data_frame(d = word_correlations,
vertices = abstract_which_mention_word %>%
semi_join(word_correlations, by = c("word" = "item1"))) %>%
ggraph(layout = "fr") +
geom_edge_link() +
geom_node_point() +
geom_node_text(aes (label = name), repel = TRUE)
R puts this error message
Error in try_fetch(as_tbl_graph(graph), error = function(e) { :
could not find function "try_fetch"