回答編集履歴
1
plotlyを表示できない問題について
test
CHANGED
@@ -9,3 +9,31 @@
|
|
9
9
|
conda install -c plotly plotly
|
10
10
|
|
11
11
|
```
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
___
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
オフラインモードにすると上手く表示できるようになることがあるみたいです。
|
20
|
+
|
21
|
+
以下のコード試してみてください。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
```Python
|
26
|
+
|
27
|
+
import plotly.express as px
|
28
|
+
|
29
|
+
from plotly.offline import plot
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
fig = px.line(x=[1,2,3,4,5], y=[10,11,15,16,8], title="line plot")
|
34
|
+
|
35
|
+
plot(fig)
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
```
|