本文介绍了在pycharm中绘制数据框(pandas),但不显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我print
时,数据如下所示.
My data looks like the following when I print
it.
print data
A B
2014-04-04 0.000000 0.000000
2014-06-11 0.013416 -0.049643
2014-12-22 0.175361 -0.114184
2014-03-25 -0.160409 0.208127
2014-11-03 0.168943 -0.157301
2014-06-16 -0.130902 0.109455
pd.scatter_matrix(data, diagonal='kde', figsize=(10, 10))
其中pd = import pandas as pd
没有引发任何错误,但我在任何地方都看不到图表(?).
There are no errors thrown but i do not see the chart anywhere(?).
当matplotlib.pyplot工作时,数据是"chartable"的.仅当我调用matplotlib.pyplot.plt.show()
时才会显示Matplotlib.
The data is "chartable" as matplotlib.pyplot works. Matplotlib is only displayed when I call matplotlib.pyplot.plt.show()
.
我假设未显示该图,但是如何显示"呢?
I am assuming the plot is not being shown, but then how do i "show" it?
我正在使用这个示例.
谢谢
推荐答案
plt.show()
必须在import matplotlib.pyplot as plt
这篇关于在pycharm中绘制数据框(pandas),但不显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!