Um CodePen unten einzubetten, schreiben Sie den Code in Python, konvertieren Sie ihn und geben Sie ihn mit der Konvertierungsfunktion von plotly in HTML aus, fügen Sie ihn in CodePen ein, um HTML zum Einbetten zu generieren, und fügen Sie ihn zum Zeichnen in Qiita ein.
See the Pen qiita_embed_sample by wakame1367 (@wakamezake) on CodePen.
Unter der folgenden URL finden Sie Informationen zum Einfügen in CodePen und zum Generieren von HTML zum Einbetten. Qiita - Sie können CodePen jetzt in Artikel mit Qiita einbetten
Der folgende Code ist in Python geschrieben, das mithilfe der Konvertierungsfunktion von plotly in HTML konvertiert und ausgibt. Es wurde bestätigt, dass dieser Code nur mit Google Colabatory funktioniert.
Ich habe den Code, den ich tatsächlich geschrieben habe, geteilt, also zögern Sie nicht, ihn zu verwenden. GoogleClolabratory - plotly_to_html
plotly_to_html.py
#Plotly
import plotly
import plotly.tools as tls
import plotly.graph_objs as go
import plotly.express as px
import plotly.figure_factory as ff
# If you're using this code locally:
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
# If you're copying this into a jupyter notebook, add:
init_notebook_mode(connected=True)
# To run Plotly code in colab:
import plotly.io as pio
### REMOVE THIS LINE BEFORE RUNNING IN A JUPYTER NOTEBOOK
pio.renderers.default = 'colab'
fig = {
"data": [plotly.graph_objs.Scatter(x=[1, 2, 3], y=[10, 20, 30])],
"layout": plotly.graph_objs.Layout(title="offline plot"),
}
plotly.offline.plot(fig, auto_open=False, filename="temp-plot.html", include_plotlyjs="cdn")
Recommended Posts