在 Jupyter 笔记本中使用 matplotlib 创建图形时遇到问题
Trouble in creating graphics with matplotlib in a Jupyter notebook
根据 pandas 可视化文档 (https://pandas.pydata.org/pandas-docs/stable/visualization.html#visualization-hist),我正在尝试创建以下图形:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
## A data set in my AzureML workplace experiment
df = ds.to_dataframe()
plt.figure();
df.plot.hist(stacked=True, bins=20)
plt.figure();df.boxplot()
然而,输出仅限于"<matplotlib.axes._subplots.AxesSubplot at 0x7fd12e15dc18>"
(对于直方图(=)和<matplotlib.axes._subplots.AxesSubplot at 0x7fd12e0ce828>"
(对于箱线图),但没有图像出现。任何人都可以帮助我识别我的东西错过了吗?谢谢!
我在 AzureML 的 Jupyter Notebook 中使用 Python 3。
df.describe()
方法正常工作(有一个dataFrame)
你设置后台了吗?
%matplotlib inline
这里也值得一读它对笔记本的作用
Purpose of "%matplotlib inline"
根据 pandas 可视化文档 (https://pandas.pydata.org/pandas-docs/stable/visualization.html#visualization-hist),我正在尝试创建以下图形:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
## A data set in my AzureML workplace experiment
df = ds.to_dataframe()
plt.figure();
df.plot.hist(stacked=True, bins=20)
plt.figure();df.boxplot()
然而,输出仅限于"<matplotlib.axes._subplots.AxesSubplot at 0x7fd12e15dc18>"
(对于直方图(=)和<matplotlib.axes._subplots.AxesSubplot at 0x7fd12e0ce828>"
(对于箱线图),但没有图像出现。任何人都可以帮助我识别我的东西错过了吗?谢谢!
我在 AzureML 的 Jupyter Notebook 中使用 Python 3。
df.describe()
方法正常工作(有一个dataFrame)
你设置后台了吗?
%matplotlib inline
这里也值得一读它对笔记本的作用 Purpose of "%matplotlib inline"