统计代写|主成分分析代写Principal Component Analysis代考|Incomplete PCA by Alternating Minimization
如果你也在 怎样代写主成分分析Principal Component Analysis这个学科遇到相关的难题,请随时右上角联系我们的24/7代写客服。
主成分分析(PCA)是计算主成分并使用它们对数据进行基础改变的过程,有时只使用前几个主成分,而忽略其余部分。
statistics-lab™ 为您的留学生涯保驾护航 在代写主成分分析Principal Component Analysis方面已经树立了自己的口碑, 保证靠谱, 高质且原创的统计Statistics代写服务。我们的专家在代写主成分分析Principal Component Analysis代写方面经验极为丰富,各种代写主成分分析Principal Component Analysis相关的作业也就用不着说。
我们提供的主成分分析Principal Component Analysis及其相关学科的代写,服务范围广, 其中包括但不限于:
- Statistical Inference 统计推断
- Statistical Computing 统计计算
- Advanced Probability Theory 高等概率论
- Advanced Mathematical Statistics 高等数理统计学
- (Generalized) Linear Models 广义线性模型
- Statistical Machine Learning 统计机器学习
- Longitudinal Data Analysis 纵向数据分析
- Foundations of Data Science 数据科学基础

统计代写|主成分分析代写Principal Component Analysis代考|Incomplete PCA by Alternating Minimization
Although the convex-optimization-based approach can ensure correctness of the low-rank solution for the matrix completion problem, it requires solving a convex program of the same size as the matrix. When the data matrix $X$ is very large, parameterizing the low-rank solution $A$ and Lagrange multipliers $Z$ with two matrices of the same size as $X$ seems rather demanding, actually redundant. At least the low-rank solution $A$ could be parameterized more economically with its lowrank factors. Hence, if scalability of the algorithm is a serious concern, it makes sense to look for the low-rank factors of the solution matrix directly.
To this end, we introduce in this section an alternating minimization algorithm for solving the geometric PCA problem with missing data. The main idea behind this approach, which was probably first proposed in (Wiberg 1976), is to find $\mu, U$, and $Y$ that minimize the error $\left|X-\boldsymbol{\mu} \mathbf{1}^{\top}-U Y\right|_F^2$ considering only the known entries of $X$ in the set $\Omega=\left{(i, j): w_{i j}=1\right}$, i.e.,
$$
\begin{aligned}
\left|\mathcal{P}{\Omega}\left(X-\boldsymbol{\mu} \mathbf{1}^{\top}-U Y\right)\right|_F^2 & =\left|W \odot\left(X-\boldsymbol{\mu} \mathbf{1}^{\top}-U Y\right)\right|_F^2 \ & =\sum{i=1}^D \sum_{j=1}^N w_{i j}\left(x_{i j}-\mu_i-\boldsymbol{u}i^{\top} \boldsymbol{y}_j\right)^2, \end{aligned} $$ where $x{i j}$ is the $(i, j)$ th entry of $X, \mu_i$ is the $i$ th entry of $\mu, \boldsymbol{u}i^{\top}$ is the $i$ th row of $U$, and $\boldsymbol{y}_j$ is the $j$ th column of $Y$. Notice that this cost function is the same as that in (3.10), except that the errors $\varepsilon{i j}=x_{i j}-\boldsymbol{u}i^{\top} \boldsymbol{y}_j$ associated with the missing entries $\left(w{i j}=0\right.$ ) are removed.In what follows, we will derive an alternating minimization algorithm for minimizing the cost function in (3.34). For the sake of simplicity, we will first derive the algorithm in the case of zero-mean and complete data. In this case, the problem in (3.34) reduces to a low-rank matrix approximation problem, which can be solved using the SVD, as described in Theorem 2.3. The alternating minimization algorithm to be derived provides an alternative to the SVD solution, which, however, can be more easily extended to the case of incomplete data, as we will see. Moreover, the algorithm can also be extended to the more challenging PCA problem with missing entries, as we will see.
统计代写|主成分分析代写Principal Component Analysis代考|PCA with Robustness to Corrupted Entries
In the previous section, we considered the PCA problem in the case that some entries of the data points are missing. In this section, we consider the PCA problem in the case that some of the entries of the data points have been corrupted by gross errors, known as intrasample outliers. The additional challenge is that we do not know which entries have been corrupted. Thus, the problem is to simultaneously detect which entries have been corrupted and replace them by their uncorrupted values. In some literature, this problem is referred to as the robust PCA problem (De la Torre and Black 2004; Candès et al. 2011).
Let us first recall the PCA problem (see Section 2.1.2) in which we are given $N$ data points $\mathcal{X}=\left{x_j \in \mathbb{R}^D\right}_{j=1}^N$ drawn (approximately) from a $d$-dimensional affine subspace $S={\boldsymbol{x}=\boldsymbol{\mu}+U \boldsymbol{y}}$, where $\boldsymbol{\mu} \in \mathbb{R}^D$ is an arbitrary point in $S, U \in \mathbb{R}^{D \times d}$ is a basis for $S$, and $\left{y_j \in \mathbb{R}^d\right}_{j=1}^N$ are the principal components. In the robust PCA problem, we assume that the $i$ th entry $x_{i j}$ of a data point $\boldsymbol{x}j$ is obtained by corrupting the $i$ th entry $\ell{i j}$ of a point $\ell_j$ lying perfectly on the subspace $S$ by an error $e_{i j}$, i.e.,
$$
x_{i j}=\ell_{i j}+e_{i j}, \quad \text { or } \quad \boldsymbol{x}_j=\boldsymbol{\ell}_j+\boldsymbol{e}_j, \quad \text { or } \quad X=L+E \text {, }
$$ where $X, L, E \in \mathbb{R}^{D \times N}$ are matrices with entries $x_{i j}, \ell_{i j}$, and $e_{i j}$, respectively. Such errors can have a huge impact on the estimation of the subspace. Thus it is very important to be able to detect the locations of those errors,
$$
\Omega=\left{(i, j): e_{i j} \neq 0\right}
$$
as well as correct the erroneous entries before applying PCA to the given data. As discussed before, a key difference between the robust PCA problem and the incomplete PCA problem is that we do not know the location of the corrupted entries. This makes the robust PCA problem harder, since we need to simultaneously detect and correct the errors. Nonetheless, when the number of corrupted entries is a small enough fraction of the total number of entries, i.e., when $|\Omega|<\rho \cdot D N$ for some $\rho<1$, we may still hope to be able to detect and correct such errors. In the remainder of this section, we describe methods from robust statistics and convex optimization for addressing this problem.

主成分分析代考
统计代写|主成分分析代写Principal Component Analysis代考|Incomplete PCA by Alternating Minimization
虽然基于凸优化的方法可以保证矩阵补全问题低秩解的正确性,但它需要求解一个与矩阵大小相同的凸规 划。当数据矩阵 $X$ 非常大,参数化低秩解 $A$ 和拉格朗日乘数 $Z$ 具有两个相同大小的矩阵 $X$ 看似苛刻,实则 多余。至少是低阶解 $A$ 可以通过其低秩因子更经济地参数化。因此,如果算法的可扩展性是一个严重的问 题,那么直接寻找解矩阵的低秩因子是有意义的。
为此,我们在本节中介绍了一种用于解决具有缺失数据的几何 PCA 问题的交替最小化算法。这种方法背 后的主要思想可能首先在 (Wiberg 1976) 中提出,是为了找到 $\mu, U ,$ 和 $Y$ 最小化错误 $\left|X-\boldsymbol{\mu} 1^{\top}-U Y\right|F^2$ 只考虑已知条目 $X$ 在集合中 $\backslash$ Omega=\eft ${(i, j):$ w{i j $\left.}=1 \backslash r i g h t\right}$ ,那是,
$$
\left|\mathcal{P} \Omega\left(X-\boldsymbol{\mu} \mathbf{1}^{\top}-U Y\right)\right|F^2=\left|W \odot\left(X-\boldsymbol{\mu} \mathbf{1}^{\top}-U Y\right)\right|_F^2 \quad=\sum i=1^D \sum{j=1}^N w_{i j}\left(x_{i j}-\mu_i\right.
$$
在哪里 $x i j$ 是个 $(i, j)$ 的第一个条目 $X, \mu_i$ 是个 $i$ 的第一个条目 $\mu, \boldsymbol{u} i^{\top}$ 是个 $i$ 第排 $U$ ,和 $\boldsymbol{y}j$ 是个 $j$ 第 列 $Y$. 请 注意,此成本函数与 (3.10) 中的相同,只是误差 $\varepsilon i j=x{i j}-\boldsymbol{u} i^{\top} \boldsymbol{y}_j$ 与丟失的条目相关联 $(w i j=0)$ 被 去除。接下来,我们将推导出一种交替最小化算法,用于最小化 (3.34) 中的成本函数。为了简单起见,我 们将首先在零均值和完整数据的情况下推导算法。在这种情况下,(3.34) 中的问题简化为低阶矩阵逼近问 题,可以使用 SVD 求解,如定理 2.3 中所述。要导出的交替最小化算法提供了 SVD 解决方案的替代方 案,但是,正如我们将看到的,它可以更容易地扩展到不完整数据的情况。此外,正如我们将看到的,该 算法还可以扩展到更具挑战性的条目缺失的 PCA 问题。
统计代写|主成分分析代写Principal Component Analysis代考|PCA with Robustness to Corrupted Entries
在上一节中,我们考虑了在数据点的某些条目丟失的情况下的 PCA 问题。在本节中,我们考虑在数据点 的某些条目已被严重错误 (称为样本内异常值) 损坏的情况下的 PCA 问题。额外的挑战是我们不知道哪 些条目已损坏。因此,问题是同时检测哪些条目已损坏并用末损坏的值替换它们。在一些文献中,这个问 题被称为稳健的 PCA 问题(De la Torre 和 Black 2004;Candès 等人 2011)。
让我们首先回顾 PCA 问题(见第 2.1.2 节),其中给出了 $N$ 数据点
Imathcal ${X}=\backslash l e f t\left{x _j \backslash\right.$ in $\left.\backslash m a t h b b{R}^{\wedge} D \backslash r i g h t\right} _{j=1}^{\wedge} N$ (大约) 从 $d$-维仿射子空间 $S=\boldsymbol{x}=\boldsymbol{\mu}+U \boldsymbol{y}$ ,在 分。在稳健的 PCA 问题中,我们假设 $i$ 第一个条目 $x_{i j}$ 一个数据点 $x j$ 是通过破坏获得的 $i$ 第一个条目 $\ell i j$ 的 一点 $\ell_j$ 完美地躺在子空间上 $S$ 由于错误 $e_{i j}$ ,那是,
$$
x_{i j}=\ell_{i j}+e_{i j}, \quad \text { or } \quad \boldsymbol{x}j=\boldsymbol{\ell}_j+\boldsymbol{e}_j, \quad \text { or } \quad X=L+E, $$ 在哪里 $X, L, E \in \mathbb{R}^{D \times N}$ 是有条目的矩阵 $x{i j}, \ell_{i j}$ ,和 $e_{i j}$ ,分别。这种错误会对子空间的估计产生巨大 影响。因此,能够检测到这些错误的位置非常重要,
\Omega $=\backslash$ left ${(i, j):$ e_ ${i j} \backslash$ lneq o\right } }
以及在将 PCA 应用于给定数据之前更正错误条目。如前所述,稳健的 PCA 问题和不完整的 PCA 问题之间 的一个关键区别是我们不知道损坏条目的位置。这使得稳健的 PCA 问题变得更加困难,因为我们需要同 时检测和纠正错误。尽管如此,当损坏的条目数量占条目总数的比例足够小时,即 $|\Omega|<\rho \cdot D N$ 对于些 $\rho<1$ ,我们可能仍然㳍望能够检测并纠正此类错误。在本节的其余部分,我们描述了解决此问题的稳 健统计和凸优化方法。
统计代写请认准statistics-lab™. statistics-lab™为您的留学生涯保驾护航。
金融工程代写
金融工程是使用数学技术来解决金融问题。金融工程使用计算机科学、统计学、经济学和应用数学领域的工具和知识来解决当前的金融问题,以及设计新的和创新的金融产品。
非参数统计代写
非参数统计指的是一种统计方法,其中不假设数据来自于由少数参数决定的规定模型;这种模型的例子包括正态分布模型和线性回归模型。
广义线性模型代考
广义线性模型(GLM)归属统计学领域,是一种应用灵活的线性回归模型。该模型允许因变量的偏差分布有除了正态分布之外的其它分布。
术语 广义线性模型(GLM)通常是指给定连续和/或分类预测因素的连续响应变量的常规线性回归模型。它包括多元线性回归,以及方差分析和方差分析(仅含固定效应)。
有限元方法代写
有限元方法(FEM)是一种流行的方法,用于数值解决工程和数学建模中出现的微分方程。典型的问题领域包括结构分析、传热、流体流动、质量运输和电磁势等传统领域。
有限元是一种通用的数值方法,用于解决两个或三个空间变量的偏微分方程(即一些边界值问题)。为了解决一个问题,有限元将一个大系统细分为更小、更简单的部分,称为有限元。这是通过在空间维度上的特定空间离散化来实现的,它是通过构建对象的网格来实现的:用于求解的数值域,它有有限数量的点。边界值问题的有限元方法表述最终导致一个代数方程组。该方法在域上对未知函数进行逼近。[1] 然后将模拟这些有限元的简单方程组合成一个更大的方程系统,以模拟整个问题。然后,有限元通过变化微积分使相关的误差函数最小化来逼近一个解决方案。
tatistics-lab作为专业的留学生服务机构,多年来已为美国、英国、加拿大、澳洲等留学热门地的学生提供专业的学术服务,包括但不限于Essay代写,Assignment代写,Dissertation代写,Report代写,小组作业代写,Proposal代写,Paper代写,Presentation代写,计算机作业代写,论文修改和润色,网课代做,exam代考等等。写作范围涵盖高中,本科,研究生等海外留学全阶段,辐射金融,经济学,会计学,审计学,管理学等全球99%专业科目。写作团队既有专业英语母语作者,也有海外名校硕博留学生,每位写作老师都拥有过硬的语言能力,专业的学科背景和学术写作经验。我们承诺100%原创,100%专业,100%准时,100%满意。
随机分析代写
随机微积分是数学的一个分支,对随机过程进行操作。它允许为随机过程的积分定义一个关于随机过程的一致的积分理论。这个领域是由日本数学家伊藤清在第二次世界大战期间创建并开始的。
时间序列分析代写
随机过程,是依赖于参数的一组随机变量的全体,参数通常是时间。 随机变量是随机现象的数量表现,其时间序列是一组按照时间发生先后顺序进行排列的数据点序列。通常一组时间序列的时间间隔为一恒定值(如1秒,5分钟,12小时,7天,1年),因此时间序列可以作为离散时间数据进行分析处理。研究时间序列数据的意义在于现实中,往往需要研究某个事物其随时间发展变化的规律。这就需要通过研究该事物过去发展的历史记录,以得到其自身发展的规律。
回归分析代写
多元回归分析渐进(Multiple Regression Analysis Asymptotics)属于计量经济学领域,主要是一种数学上的统计分析方法,可以分析复杂情况下各影响因素的数学关系,在自然科学、社会和经济学等多个领域内应用广泛。
MATLAB代写
MATLAB 是一种用于技术计算的高性能语言。它将计算、可视化和编程集成在一个易于使用的环境中,其中问题和解决方案以熟悉的数学符号表示。典型用途包括:数学和计算算法开发建模、仿真和原型制作数据分析、探索和可视化科学和工程图形应用程序开发,包括图形用户界面构建MATLAB 是一个交互式系统,其基本数据元素是一个不需要维度的数组。这使您可以解决许多技术计算问题,尤其是那些具有矩阵和向量公式的问题,而只需用 C 或 Fortran 等标量非交互式语言编写程序所需的时间的一小部分。MATLAB 名称代表矩阵实验室。MATLAB 最初的编写目的是提供对由 LINPACK 和 EISPACK 项目开发的矩阵软件的轻松访问,这两个项目共同代表了矩阵计算软件的最新技术。MATLAB 经过多年的发展,得到了许多用户的投入。在大学环境中,它是数学、工程和科学入门和高级课程的标准教学工具。在工业领域,MATLAB 是高效研究、开发和分析的首选工具。MATLAB 具有一系列称为工具箱的特定于应用程序的解决方案。对于大多数 MATLAB 用户来说非常重要,工具箱允许您学习和应用专业技术。工具箱是 MATLAB 函数(M 文件)的综合集合,可扩展 MATLAB 环境以解决特定类别的问题。可用工具箱的领域包括信号处理、控制系统、神经网络、模糊逻辑、小波、仿真等。