Câu hỏi được gắn thẻ «plotly»

1
Hiển thị biểu đồ tương tác (tệp .html) trên Trang GitHub
Tôi đã tạo ra cốt truyện theo cốt truyện như sau: import plotly labels = ['Oxygen', 'Hydrogen', 'Carbon_Dioxide', 'Nitrogen'] values = [4500, 2500, 1053, 500] trace = plotly.graph_objs.Pie(labels=labels, values=values) plotly.offline.plot([trace], filename='basic-pie-chart') Sau đó, tôi đã tạo html như vậy: print(plotly.offline.plot([trace], include_plotlyjs=False, output_type='div')) Chạy mã ở trên tạo ra tệp .html …
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.