概述
"""
Annotated heatmaps
==================
"""
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
# Load the example flights dataset and convert to long-form
flights_long = sns.load_dataset("flights")
flights = flights_long.pivot("month", "year", "passengers")
# Draw a heatmap with the numeric values in each cell
f, ax = plt.subplots(figsize=(9, 6))
sns.heatmap(flights, annot=True, fmt="d", linewidths=.5, ax=ax)
解决方法其实很简单直接在最后加上:
plt.show()
即可以完美的显示所作的图!!!!!!!!!!!!!!!
最后
以上就是天真可乐为你收集整理的解决调用seaborn在pycharm中绘制图显示不出来的问题的全部内容,希望文章能够帮你解决解决调用seaborn在pycharm中绘制图显示不出来的问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复