1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

google Colaboratoryでダークテーマでも図の目盛りとラベルを見やすくする設定

Last updated at Posted at 2020-06-26

こんな人におすすめ

・google colaboratoryでダークテーマを使用しているが、図の目盛りとラベルが見えづらくて困っている人

google colaboratoryのダークテーマ

標準テーマでは味気ないですがダークテーマはクールです。
やる気も上がりますし夜でも目に優しい。
WS000013.JPG

問題点

ただし、難点が一つあります。それは図の目盛りやラベルが潰れてしまうこと。
適当にランダムな50個の散布図をプロットしてみます。

import numpy as np
import matplotlib.pyplot as plt
a = np.random.rand(50)
b = np.random.rand(50)
plt.scatter(a,b)

WS000010.JPG
見えない...
目盛りやラベル部分の背景が透過画像となっているため背景画像と同色の文字が見えづらくなっているのが原因です。

解決方法

下の文章を追加しましょう。

import seaborn as sns
sns.set()

これで同じように

plt.scatter(a,b)

とすると
WS000011.JPG
きれいに見えました。sns.set()をいれないと、seabornにしてもラベルと目盛り部分が透過画像となってしまうので注意しましょう。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?