Plot
By creating an index.html file in the correct directory, an interactive plot can be created. The easiest way to create an interactive plot is to use Plotly, but you can also handcraft an HTML file as long as the file is placed in:
Plotly
Following is an example using Plotly:
import plotly.graph_objects as go
import plotly.offline as pyo
import os
def transform(df):
fig = go.Figure()
pyo.plot(fig, filename=f"/data/{os.environ['ARTIFACT_FOLDER']}/index.html")