当前位置: 首页>>代码示例>>Python>>正文


Python Graphics.heatmap方法代码示例

本文整理汇总了Python中Graphics.heatmap方法的典型用法代码示例。如果您正苦于以下问题:Python Graphics.heatmap方法的具体用法?Python Graphics.heatmap怎么用?Python Graphics.heatmap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Graphics的用法示例。


在下文中一共展示了Graphics.heatmap方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: component

# 需要导入模块: import Graphics [as 别名]
# 或者: from Graphics import heatmap [as 别名]
pca.fit(x)

mat = pca.components_.transpose()*pca.explained_variance_ratio_
idxs = np.argsort(mat[:,0])
#artist.heatmap(mat[idxs,:], 
#	xlabel='Principal component (scaled by eigenvalue)',
#	yticklabels=[labels[i] for i in idxs], pc_cutoff = 5)

n_components = [5, 10, 15]
Cs = np.logspace(-4, 4, 3)
estimator = GridSearchCV(pipe,
                         dict(pca__n_components=n_components,
                              logistic__C=Cs))
estimator.fit(x,y)

artist.heatmap(pca.transform(x), ylabel='Patients', xlabel='Eigenvectors')

z = pca.transform(x)
fi = plt.figure()
a = fi.add_subplot(111)
a.scatter(z[:,0],z[:,1],c=['r' if x == -1 else 'g' for x in loc], 
		s=[50 if x==1 else 20 for x in tumor],alpha = [0.3+k for k in y] )
artist.adjust_spines(a)
a.set_xlabel(r'\Large \textbf{PC1}')
a.set_ylabel(r'\Large \textbf{PC2}')
plt.show()

'''
fig2 = plt.figure()
ax2 = fig2.add_subplot(111)
cax = ax2.imshow(logistic.coef_.transpose(),interpolation='nearest',aspect='auto')
开发者ID:mac389,项目名称:clinic,代码行数:33,代码来源:lin-regression.py


注:本文中的Graphics.heatmap方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。