hei
i use module from matminer.figrecipes.plot import PlotlyFig
and i try this basic code
A Simple XY plot
pf = PlotlyFig(title="Basic Example", mode='notebook')
Inputs are tuples contain a list of x variables and y variables
pf.xy(([1, 2, 3], [4, 5, 6]))
but the plot not showed
so, can you tell how to show this plot in google colab ?
