博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
numpy lib1
阅读量:6445 次
发布时间:2019-06-23

本文共 858 字,大约阅读时间需要 2 分钟。

R统计分析与资料探勘入门—以鸢尾花资料集为例

http://www.cc.ntu.edu.tw/chinese/epaper/0031/20141220_3105.html

 

 

http://www.36dsj.com/archives/39775

 

http://blog.csdn.net/zouxy09/article/details/9993371 

 

http://php-52cs.rhcloud.com/?cat=7

 

 

ndarray

a =array([[1,2,3],[4,5,6],[7,8,9],[10,11,12]])

min(axis=None)

max(axis=None)

axis 解释   0 矩阵列  1 矩阵行

a.min(0)array([1, 2, 3])a.min(1)array([ 1,  4,  7, 10])

 

def linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None)

N=3x1 = np.linspace(0, 10, N, endpoint=True)  0~10之间的数分成N等分array([  0.,   5.,  10.])

 

def logspace(start, stop, num=50, endpoint=True, base=10.0, dtype=None)  0~10之间的数分成N等分  然后10** 等分值

N=3x1 = np.logspace(0, 10, N, endpoint=True)array([  1.00000000e+00,   1.00000000e+05,   1.00000000e+10])  #10**0 ,10**5, 10**10

 

 

np.random.shuffle()  打乱顺序

y = np.dot(X, coef)  内积

 

转载于:https://www.cnblogs.com/kyostone/p/5726291.html

你可能感兴趣的文章
Windows Phone Isolated Storage 系列 - 使用XmlSerializer读取和存储XML文件
查看>>
创建FileShare的content source的SharePoint 2013的powershell脚本
查看>>
【iOS开发者必备】APP 图标规格参考表
查看>>
泛型中去掉指定字段重复的数据
查看>>
通过修改CR0寄存器绕过SSDT驱动保护
查看>>
Zen Coding css,html缩写替换大观 快速写出html,css
查看>>
根据复选框后面的描述文字进行选择的技巧
查看>>
asp.net 中将汉字转换成拼音
查看>>
[转]Easy Stored Procedure Output Oracle Select
查看>>
字符串的最长公共子序列问题
查看>>
Debug和Release区别
查看>>
php应该在何时调用mysql_close() ,可能和中断请求有关
查看>>
dedecms 文章列表和频道列表同时调用
查看>>
有栖川有栖《马来铁道之谜》读后感
查看>>
ASP.Net生成静态HTML页
查看>>
[leetcode]Length of Last Word
查看>>
POJ 1325、ZOJ 1364、HDU 1150 Machine Schedule - from lanshui_Yang
查看>>
布里斯班两周感受
查看>>
图形学基础 关于光照的科普知识
查看>>
Oracle定义varchar2()类型存储汉字的长度问题
查看>>