PredictiveMLGenAI / paginas /demokaleido.py
IvanStudent's picture
Upload 12 files
103ce4f verified
raw
history blame contribute delete
172 Bytes
import plotly.express as px
fig = px.line(x=[1, 2, 3], y=[4, 5, 6])
fig.write_image("test_fig.png", width=900, height=500)
print("✅ Imagen guardada correctamente")