会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
chen狗蛋儿
博客园
首页
新随笔
联系
订阅
管理
2018年4月29日
plot 含缺失值的图
摘要: x = np.linspace(1,10,25) y = (x-4)**2 index = random.sample(range(25),5) # 从1-24中不放回随机抽取5个数 y[index ] = [np.nan]*5 plt.plot(x,y,'o-') # 一定要保证x,y等长 plt.show()plt.plot(x,(x-4)**2,'x',x,y,'o-')pl...
阅读全文
posted @ 2018-04-29 20:19 chen狗蛋儿
阅读(513)
评论(0)
推荐(1)
编辑
公告