This tutorial shows you how to make interactive plots of pandapower networks using plotly (https://plot.ly/python/). The best way to get started is to get familiar with 3 built-in plots that correspond to:
The following sample plots are with mv_oberrhein network from the pandapower.networks package:
from pandapower.plotting.plotly import simple_plotly
from pandapower.networks import mv_oberrhein
from pandapower import runpp
net = mv_oberrhein()
runpp(net)
A simple network plot wich labels as separate trace all network buses, lines, transformers and external grid. Try some of the fancy plotly features from the upper-right corner:
simple_plotly(net);