Python高维数据分析 西安电子科技大学出版社 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz

Python高维数据分析 西安电子科技大学出版社电子书下载地址
- 文件名
- [epub 下载] Python高维数据分析 西安电子科技大学出版社 epub格式电子书
- [azw3 下载] Python高维数据分析 西安电子科技大学出版社 azw3格式电子书
- [pdf 下载] Python高维数据分析 西安电子科技大学出版社 pdf格式电子书
- [txt 下载] Python高维数据分析 西安电子科技大学出版社 txt格式电子书
- [mobi 下载] Python高维数据分析 西安电子科技大学出版社 mobi格式电子书
- [word 下载] Python高维数据分析 西安电子科技大学出版社 word格式电子书
- [kindle 下载] Python高维数据分析 西安电子科技大学出版社 kindle格式电子书
寄语:
新华书店正版,关注店铺成为会员可享店铺专属优惠,团购客户请咨询在线客服!
内容简介:
本书从矩阵计算如特征值分解和奇异值分解出发,讨论了正规方程的最小二乘法模型引出欠秩线性方程组的求解方法问题;然后介绍了两种有损的降维方法,即主成分分析(主成分回归)和偏最小二乘回归,包括模型、算法和多个实例,并扩展到线性回归的正则化方法,给出了岭回归和Lasso的原理算法和实例;最后通过红外光谱的标定迁移实例将线性模型扩展到迁移学习领域。本书每章都有基于Python语言和Sklearn机器学习库的红外光谱数据集分析的实例。红外光谱集是关于物质吸光率的纯数据,可以与其标签标示的数据物质浓度直接进行回归分析,读者在阅读中可以把精力优选限度地集中在高维数据的建模、算法实现和分析过程上。本书既可作为信息管理和信息系统专业、计算机相关专业和大数据专业的教学用书,也可作为从事光谱分析、化学分析的工程人员及化学计量学研究人员的参考书,还适合对数据分析和研究感兴趣的其他Python工程师学习阅读。本书引用的原始文献和数据对上述人员是非常有帮助的。
书籍目录:
Chapter 1 Basis of Matrix Calculation
1.1 Fundamental Concepts
1.1.1 Notation
1.1.2 “BiggerBlock” Interpretations of Matrix Multiplication
1.1.3 Fundamental Linear Algebra
1.1.4 Four Fundamental Subspaces of a Matrix
1.1.5 Vector Norms
1.1.6 Determinants
1.1.7 Properties of Determinants
1.2 The Most Basic Matrix Decomposition
1.2.1 Gaussian Elimination
1.2.2 The LU Decomposition
1.2.3 The LDM Factorization
1.2.4 The LDL Decomposition for Symmetric Matrices
1.2.5 Cholesky Decomposition
1.2.6 Applications and Examples of the Cholesky Decomposition
1.2.7 Eigendecomposition
1.2.8 Matrix Norms
1.2.9 Covariance Matrices
1.3 Singular Value Decomposition (SVD)
1.3.1 Orthogonalization
1.3.2 Existence Proof of the SVD
1.3.3 Partitioning the SVD
1.3.4 Properties and Interpretations of the SVD
1.3.5 Relationship between SVD and ED
1.3.6 Ellipsoidal Interpretation of the SVD
1.3.7 An Interesting Theorem
1.4 The Quadratic Form
1.4.1 Quadratic Form Theory
1.4.2 The Gaussian MultiVariate Probability Density Function
1.4.3 The Rayleigh Quotient
Chapter 2 The Solution of Least Squares Problems
2.1 Linear Least Squares Estimation
2.1.1 Example: Autoregressive Modelling
2.1.2 The LeastSquares Solution
2.1.3 Interpretation of the Normal Equations
2.1.4 Properties of the LS Estimate
2.1.5 Linear LeastSquares Estimation and the Cramer Rao Lower Bound
2.2 A Generalized “PseudoInverse” Approach to Solving the Leastsquares Problem
2.2.1 Least Squares Solution Using the SVD
2.2.2 Interpretation of the PseudoInverse
Chapter 3 Principal Component Analysis
3.1 Introductory Example
3.2 Theory
3.2.1 Taking Linear Combinations
3.2.2 Explained Variation
3.2.3 PCA as a Model
3.2.4 Taking More Components
3.3 History of PCA
3.4 Practical Aspects
3.4.1 Preprocessing
3.4.2 Choosing the Number of Components
3.4.3 When Using PCA for Other Purposes
3.4.4 Detecting Outliers
References
3.5 Sklearn PCA
3.5.1 Source Code
3.5.2 Examples
3.6 Principal Component Regression
3.6.1 Source Code
3.6.2 KFold CrossValidation
3.6.3 Examples
3.7 Subspace Methods for Dynamic Model Estimation in PAT Applications
3.7.1 Introduction
3.7.2 Theory
3.7.3 State Space Models in Chemometrics
3.7.4 Milk Coagulation Monitoring
3.7.5 State Space Based Monitoring
3.7.6 Results
3.7.7 Concluding remarks
3.7.8 Appendix
References
Chapter 4 Partial Least Squares Analysis
4.1 Basic Concept
4.1.1 Partial Least Squares
4.1.2 Form of Partial Least Squares
4.1.3 PLS Regression
4.1.4 Statistic
Reference
4.2 NIPALS and SIMPLS Algorithm
4.2.1 NIPALS
4.2.2 SIMPLS
References
4.3 Programming Method of Standard Partial Least Squares
4.3.1 Crossvalidation
4.3.2 Procedure of NIPALS
4.4 Example Application
4.4.1 Demo of PLS
4.4.2 Corn Dataset
4.4.3 Wheat Dataset
4.4.4 Pharmaceutical Tablet Dataset
4.5 Stack Partial Least Squares
4.5.1 Introduction
4.5.2 Theory of Stack Partial Least Squares
4.5.3 Demo of SPLS
4.5.4 Experiments
References
Chapter 5 Regularization
5.1 Regularization
5.1.1 Classification
5.1.2 Tikhonov Regularization
5.1.3 Regularizers for Sparsity
5.1.4 Other Uses of Regularization in Statistics and Machine Learning
5.2 Ridge Regression: Biased Estimation for Nonorthogonal Problems
5.2.1 Properties of Best Linear Unbiased Estimation
5.2.2 Ridge Regression
5.2.3 The Ridge Trace
5.2.4 Mean Square Error Properties of Ridge Regression
5.2.5 A General Form of Ridge Regression
5.2.6 Relation to Other Work in Regression
5.2.7 Selecting a Better Estimate of ?
References
5.3 Lasso
5.3.1 Introduction
5.3.2 Theory of the Lasso
References
5.4 The Example of Ridge Regression and Lasso Regression
5.4.1 Example
5.4.2 Practical Example
5.5 Sparse PCA
5.5.1 Introduction
5.5.2 Motivation and Method Details
5.5.3 SPCA for p ≥ n and Gene Expression Arrays
5.5.4 Demo of SPCA
References
Chapter 6 Transfer Method
6.1 Calibration Transfer of Spectral Models[1]
6.1.1 Introduction
6.1.2 Calibration Transfer Setting
6.1.3 Related Work
6.1.4 New or Adapted Methods
6.1.5 Standardfree Alternatives to Methods Requiring Transfer StandardsReferences
6.2 PLS Subspace Based Calibration Transfer for NIR Quantitative Analysis
6.2.1 Calibration Transfer Method
6.2.2 Experimental
6.2.3 Results and Discussion
6.2.4 Conclusion
References
6.3 Calibration Transfer Based on Affine Invariance for NIR without Standard Samples
6.3.1 Theory
6.3.2 Experimental
6.3.3 Results and Discussion
6.3.4 Conclusions
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
在线阅读地址:Python高维数据分析 西安电子科技大学出版社在线阅读
在线听书地址:Python高维数据分析 西安电子科技大学出版社在线收听
在线购买地址:Python高维数据分析 西安电子科技大学出版社在线购买
原文赏析:
暂无原文赏析,正在全力查找中!
其它内容:
暂无其它内容!
网站评分
书籍多样性:8分
书籍信息完全性:4分
网站更新速度:7分
使用便利性:6分
书籍清晰度:3分
书籍格式兼容性:9分
是否包含广告:6分
加载速度:6分
安全性:6分
稳定性:3分
搜索功能:6分
下载便捷性:5分
下载点评
- 还行吧(602+)
- 目录完整(672+)
- 下载快(399+)
- 三星好评(646+)
- 种类多(284+)
- 无漏页(85+)
- 格式多(234+)
- 无水印(105+)
- 体验差(615+)
- 博大精深(448+)
- 图文清晰(307+)
- 购买多(240+)
- 下载速度快(668+)
下载评价
- 网友 蓬***之:
好棒good
- 网友 宫***玉:
我说完了。
- 网友 孙***夏:
中评,比上不足比下有余
- 网友 冉***兮:
如果满分一百分,我愿意给你99分,剩下一分怕你骄傲
- 网友 田***珊:
可以就是有些书搜不到
- 网友 师***怀:
好是好,要是能免费下就好了
- 网友 冷***洁:
不错,用着很方便
- 网友 孙***美:
加油!支持一下!不错,好用。大家可以去试一下哦
- 网友 晏***媛:
够人性化!
- 网友 相***儿:
你要的这里都能找到哦!!!
- 网友 陈***秋:
不错,图文清晰,无错版,可以入手。
喜欢"Python高维数据分析 西安电子科技大学出版社"的人也看了
新编仪礼图之方位图·嘉礼卷(上) mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
台湾 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
福尔摩斯探案全集3册全套原著柯南道尔正版珍藏版世界经典侦探悬疑推理小说破案推理书故事青少年大侦探夏洛克小学生版世界名著 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
专业排版(PageMaker平台)PageMaker7.0职业技能培训教程(操作员级,含1CD) mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
人力资源管理(第3版)(教育部经济管理类核心课程教材) mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
全新正版图书 设计色彩方法 崔耕瑞 北京理工大学出版社有限责任公司 9787568258517 点亮音像专营店 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
足球守门员圣经:技术、训练方法和实战应用(全彩图解版) mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
海外直订Windmere Lake Safety Book: The Essential Lake Safety Guide For Children 温德米尔湖安全手册:儿童基本湖泊安全指南 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
跟着冠军学跆拳道/一学就会系列 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
全新正版图书 水利工程监理阿里木江·吐尔地水利水电出版社9787517054306 水利工程监理工作中等专业教育教蔚蓝书店 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
- 北师大二附中文科实验班作文精选(第二辑) mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
- After Effects CC影视后期制作技术教程(第三版)(高等院校艺术设计类专业系列教材) mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
- 播音主持快速入门十八招儿 赵秀环 编著 中国传媒大学出版社【正版书】 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
- 正版3册 《开悟之门神奇之门 未知之门》 张志春著奇门遁甲入门秘笈全书老书原著九宫盘起名测名启悟四柱八字排盘八卦易经六爻风水 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
- 肿瘤学 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
- 中国走兽剪纸经典/非遗中国剪纸经典系列 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
- 眼镜验光员(高级)(验光员都需要的书!国家职业技能鉴定指定辅导用书,与国家题库完全对接。内容系统全面,全书彩图。) mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
- 青少版经典名著书库水浒传 小学生初中生课外阅读书籍名师精讲考试提分 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
- 泰国拳 魏峰 编著 北京体育大学出版社,【正版可开发票】 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
- 读古诗识自然 mobi 下载 fb2 夸克云 azw3 网盘 pdf pmlz
书籍真实打分
故事情节:8分
人物塑造:3分
主题深度:6分
文字风格:9分
语言运用:5分
文笔流畅:3分
思想传递:5分
知识深度:4分
知识广度:9分
实用性:8分
章节划分:9分
结构布局:7分
新颖与独特:5分
情感共鸣:5分
引人入胜:3分
现实相关:6分
沉浸感:6分
事实准确性:7分
文化贡献:5分