Hi all!
is the title suggests I’m struggling with plotting a graph in vscode.
using GraphRecipes
using Plots
using Graphs
n = 8
g = wheel_digraph(n)
graphplot(g)
This code works perfectly fine using the julia repl in my terminal. However the same code in vscode doesn’t. There are many other plot commands (e.g. gplot
that do not work in vscode either. Do I need to change any setting in vscode, or is there an alternative to display my graphs in vscode or as HTML?