回答編集履歴

2

回答を編集

2019/02/19 03:25

投稿

magichan
magichan

スコア15898

test CHANGED
@@ -56,6 +56,8 @@
56
56
 
57
57
  ```Python
58
58
 
59
+ import seaborn as sns
60
+
59
61
  sns.set_style("white")
60
62
 
61
63
  ```
@@ -74,4 +76,4 @@
74
76
 
75
77
 
76
78
 
77
- 良いかと思います。
79
+ を先頭に追加すると良いかと思います。

1

質問の意図を間違ってとらえていたので、回等を編集

2019/02/19 03:25

投稿

magichan
magichan

スコア15898

test CHANGED
@@ -29,3 +29,49 @@
29
29
  plt.grid(True)
30
30
 
31
31
  ```
32
+
33
+
34
+
35
+ ---
36
+
37
+ **【追記】**
38
+
39
+
40
+
41
+ 変えたいのはそちらでしたか・・。スミマセン
42
+
43
+
44
+
45
+ 簡単な方法としては Seaborn の Styleを変更してください
46
+
47
+
48
+
49
+ [https://seaborn.pydata.org/tutorial/aesthetics.html#seaborn-figure-styles](https://seaborn.pydata.org/tutorial/aesthetics.html#seaborn-figure-styles)
50
+
51
+
52
+
53
+ とりあえずは
54
+
55
+
56
+
57
+ ```Python
58
+
59
+ sns.set_style("white")
60
+
61
+ ```
62
+
63
+
64
+
65
+ または
66
+
67
+
68
+
69
+ ```Python
70
+
71
+ sns.set_style("whitegrid")
72
+
73
+ ```
74
+
75
+
76
+
77
+ で良いかと思います。