当我使用我的 matplotlib 1.1.1 执行此操作时,我得到了意想不到的结果。这是一个错误吗?
import matplotlib.pyplot as plt
fig = plt.figure(figsize=(8,6))
axs = fig.add_subplot(111, aspect='equal')
data=[[range(i)] for i in range(10,13)]
p = axs.boxplot(data)
显然,方面不是equal
,而get_aspect()
方法仍然显示equal
。