回答編集履歴

1

プロット部分の追記

2020/02/11 13:18

投稿

bamboo-nova
bamboo-nova

スコア1408

test CHANGED
@@ -106,7 +106,13 @@
106
106
 
107
107
  で、プロットします。
108
108
 
109
- ```python
109
+ ```Python
110
+
111
+ import matplotlib.pyplot as plt
112
+
113
+ %matplotlib inline
114
+
115
+
110
116
 
111
117
  ax = result[result.a==1.0].plot(x="d", y="c",kind='bar',color='b')
112
118
 
@@ -114,8 +120,12 @@
114
120
 
115
121
  ax.set_xlabel("",fontsize=14)
116
122
 
123
+ labels = ax.get_xticklabels()
124
+
125
+ ax.set_xticklabels(labels, rotation=45)
126
+
117
127
  ```
118
128
 
119
129
 
120
130
 
121
- ![イメージ説明](2506c3bb730aa8a3394bcd3dfd291e62.png)
131
+ ![イメージ説明](b198bd66a4fa4a73a7d28b4a558819cf.png)