import plotly import plotly.express as px fig = px.line(EFBCg_f[1:12], x='time(ms)', y="C(n)", width=800, height=200) fig.show() file='Results/filename.png' fig.write_image(file) Run Code Online (Sandbox Code Playgroud) ...
I would like to save images within plotlyfig.write_imageusing a forloop, where each image name includes a customizedidandTimestampvalue with a string format, shown below: fig.write_image(f"{row.id},{row.Timestamp}.png") **Theidis01-1and theTimestampis2011-10-06 08:29:40inTimestamp...