2024年8月3日土曜日

Matplotlibのグラフが表示されないエラー

matplotlibでUserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.というエラーが出た場合


古いPython version-3.6を使用してmatplotlibを使用した所、UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. というエラーが出てグラフが表示されませんでした。 

 これはGUIバックエンドが入ってない事で起きるエラーで 

 pip install pyqt5 

 とすることで解決しました。

0 件のコメント:

コメントを投稿

NBA選手シーズンごとの平均リバウンド

NBA選手のシーズン当たりのリバウンド シーズン毎の得点に続き、シーズン毎のリバウンドを可視化してみます。 外れ値を省くために、1シーズン40試合以上出場した選手で構成しています。 #! /usr/bin/env python import numpy as np imp...