Matplotlib动画-空轴

时间:2019-03-26 21:26:16

标签: python python-3.x matplotlib animation

我想使用以下代码在Jupyter Notebook中进行简单的matplotlib animation绘制:

%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
from sklearn.datasets import make_classification
import matplotlib.animation as animation


X,y_train = make_classification(n_samples=100,n_features=2,n_informative=2,n_redundant=0,n_clusters_per_class =1,shift=0,class_sep=1.9) 

fig = plt.figure(figsize=(10,8))
ax = fig.add_subplot(1,1,1)


def update(num,X,y_train):
    ax.scatter(X[:num,0],X[:num,1])



ani = animation.FuncAnimation(fig,update,frames=10,interval=1000,fargs=[X,y_train])
plt.show()

但是我没有收到任何剧情...只是一个空的数字,例如: enter image description here

我也尝试了不使用$ matplotlib内联,但是它仍然无法正常工作。 有人可以帮我吗?

0 个答案:

没有答案