目录

  • 简介
  • 和标准相关分析的区别
  • 参考
  • 欢迎使用Markdown编辑器
    • 新的改变
    • 功能快捷键
    • 合理的创建标题,有助于目录的生成
    • 如何改变文本的样式
    • 插入链接与图片
    • 如何插入一段漂亮的代码片
    • 生成一个适合你的列表
    • 创建一个表格
      • 设定内容居中、居左、居右
      • SmartyPants
    • 创建一个自定义列表
    • 如何创建一个注脚
    • 注释也是必不可少的
    • KaTeX数学公式
    • 新的甘特图功能,丰富你的文章
    • UML 图表
    • FLowchart流程图
    • 导出与导入
      • 导出
      • 导入

简介

主成分分析PCA,降维的原则是投影方差最大;再回想下线性判别分析LDA,降维的原则是同类的投影方差小,异类间的投影方差大。对于我们的典型相关分析CCA,它选择的投影标准是降维到1维后,两组数据的相关系数最大

和标准相关分析的区别

虽然相关系数可以很好的帮我们分析一维数据的相关性,但是对于高维数据就不能直接使用了。拿上面我们提到的,如果X是包括人身高和体重两个维度的数据,而Y是包括跑步能力和跳远能力两个维度的数据,就不能直接使用相关系数的方法。那我们能不能变通一下呢?CCA给了我们变通的方法。

CCA使用的方法是将多维的X和Y都用线性变换为1维的X’和Y’,然后再使用相关系数来看X’和Y’的相关性。将数据从多维变到1位,也可以理解为CCA是在进行降维,将高维数据降到1维,然后再用相关系数进行相关性的分析。下面我们看看CCA的算法思想。

参考

典型关联分析(CCA)原理总结.

欢迎使用Markdown编辑器

你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Markdown编辑器, 可以仔细阅读这篇文章,了解一下Markdown的基本语法知识。

新的改变

我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器功能,我们增加了如下几点新功能,帮助你用它写博客:

  1. 全新的界面设计 ,将会带来全新的写作体验;
  2. 在创作中心设置你喜爱的代码高亮样式,Markdown 将代码片显示选择的高亮样式 进行展示;
  3. 增加了 图片拖拽 功能,你可以将本地的图片直接拖拽到编辑区域直接展示;
  4. 全新的 KaTeX数学公式 语法;
  5. 增加了支持甘特图的mermaid语法1 功能;
  6. 增加了 多屏幕编辑 Markdown文章功能;
  7. 增加了 焦点写作模式、预览模式、简洁写作模式、左右区域同步滚轮设置 等功能,功能按钮位于编辑区域与预览区域中间;
  8. 增加了 检查列表 功能。

功能快捷键

撤销:Ctrl/Command + Z
重做:Ctrl/Command + Y
加粗:Ctrl/Command + B
斜体:Ctrl/Command + I
标题:Ctrl/Command + Shift + H
无序列表:Ctrl/Command + Shift + U
有序列表:Ctrl/Command + Shift + O
检查列表:Ctrl/Command + Shift + C
插入代码:Ctrl/Command + Shift + K
插入链接:Ctrl/Command + Shift + L
插入图片:Ctrl/Command + Shift + G
查找:Ctrl/Command + F
替换:Ctrl/Command + G

合理的创建标题,有助于目录的生成

直接输入1次#,并按下space后,将生成1级标题。
输入2次#,并按下space后,将生成2级标题。
以此类推,我们支持6级标题。有助于使用TOC语法后生成一个完美的目录。

如何改变文本的样式

强调文本 强调文本

加粗文本 加粗文本

标记文本

删除文本

引用文本

H2O is是液体。

210 运算结果是 1024.

插入链接与图片

链接: link.

图片:

带尺寸的图片:

居中的图片:

居中并且带尺寸的图片:

当然,我们为了让用户更加便捷,我们增加了图片拖拽功能。

如何插入一段漂亮的代码片

去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片.

// An highlighted block
var foo = 'bar';

生成一个适合你的列表

  • 项目

    • 项目

      • 项目
  1. 项目1
  2. 项目2
  3. 项目3
  • 计划任务
  • 完成任务

创建一个表格

一个简单的表格是这么创建的:

项目 Value
电脑 $1600
手机 $12
导管 $1

设定内容居中、居左、居右

使用:---------:居中
使用:----------居左
使用----------:居右

第一列 第二列 第三列
第一列文本居中 第二列文本居右 第三列文本居左

SmartyPants

SmartyPants将ASCII标点字符转换为“智能”印刷标点HTML实体。例如:

TYPE ASCII HTML
Single backticks 'Isn't this fun?' ‘Isn’t this fun?’
Quotes "Isn't this fun?" “Isn’t this fun?”
Dashes -- is en-dash, --- is em-dash – is en-dash, — is em-dash

创建一个自定义列表

Markdown
Text-to-HTML conversion tool
Authors
John
Luke

如何创建一个注脚

一个具有注脚的文本。2

注释也是必不可少的

Markdown将文本转换为 HTML

KaTeX数学公式

您可以使用渲染LaTeX数学表达式 KaTeX:

Gamma公式展示 Γ(n)=(n−1)!∀n∈N\Gamma(n) = (n-1)!\quad\forall n\in\mathbb NΓ(n)=(n−1)!∀n∈N 是通过欧拉积分

Γ(z)=∫0∞tz−1e−tdt.\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. Γ(z)=∫0∞​tz−1e−tdt.

你可以找到更多关于的信息 LaTeX 数学表达式here.

新的甘特图功能,丰富你的文章

Mon 06Mon 13Mon 20已完成 进行中 计划一 计划二 现有任务Adding GANTT diagram functionality to mermaid
  • 关于 甘特图 语法,参考 这儿,

UML 图表

可以使用UML图表进行渲染。 Mermaid. 例如下面产生的一个序列图:

#mermaid-svg-BYcxhSyPtZcMoW3i .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .label text{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .node rect,#mermaid-svg-BYcxhSyPtZcMoW3i .node circle,#mermaid-svg-BYcxhSyPtZcMoW3i .node ellipse,#mermaid-svg-BYcxhSyPtZcMoW3i .node polygon,#mermaid-svg-BYcxhSyPtZcMoW3i .node path{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-BYcxhSyPtZcMoW3i .node .label{text-align:center;fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .node.clickable{cursor:pointer}#mermaid-svg-BYcxhSyPtZcMoW3i .arrowheadPath{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .edgePath .path{stroke:#333;stroke-width:1.5px}#mermaid-svg-BYcxhSyPtZcMoW3i .flowchart-link{stroke:#333;fill:none}#mermaid-svg-BYcxhSyPtZcMoW3i .edgeLabel{background-color:#e8e8e8;text-align:center}#mermaid-svg-BYcxhSyPtZcMoW3i .edgeLabel rect{opacity:0.9}#mermaid-svg-BYcxhSyPtZcMoW3i .edgeLabel span{color:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .cluster rect{fill:#ffffde;stroke:#aa3;stroke-width:1px}#mermaid-svg-BYcxhSyPtZcMoW3i .cluster text{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:12px;background:#ffffde;border:1px solid #aa3;border-radius:2px;pointer-events:none;z-index:100}#mermaid-svg-BYcxhSyPtZcMoW3i .actor{stroke:#ccf;fill:#ECECFF}#mermaid-svg-BYcxhSyPtZcMoW3i text.actor>tspan{fill:#000;stroke:none}#mermaid-svg-BYcxhSyPtZcMoW3i .actor-line{stroke:grey}#mermaid-svg-BYcxhSyPtZcMoW3i .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .messageLine1{stroke-width:1.5;stroke-dasharray:2, 2;stroke:#333}#mermaid-svg-BYcxhSyPtZcMoW3i #arrowhead path{fill:#333;stroke:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .sequenceNumber{fill:#fff}#mermaid-svg-BYcxhSyPtZcMoW3i #sequencenumber{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i #crosshead path{fill:#333;stroke:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .messageText{fill:#333;stroke:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .labelBox{stroke:#ccf;fill:#ECECFF}#mermaid-svg-BYcxhSyPtZcMoW3i .labelText,#mermaid-svg-BYcxhSyPtZcMoW3i .labelText>tspan{fill:#000;stroke:none}#mermaid-svg-BYcxhSyPtZcMoW3i .loopText,#mermaid-svg-BYcxhSyPtZcMoW3i .loopText>tspan{fill:#000;stroke:none}#mermaid-svg-BYcxhSyPtZcMoW3i .loopLine{stroke-width:2px;stroke-dasharray:2, 2;stroke:#ccf;fill:#ccf}#mermaid-svg-BYcxhSyPtZcMoW3i .note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-BYcxhSyPtZcMoW3i .noteText,#mermaid-svg-BYcxhSyPtZcMoW3i .noteText>tspan{fill:#000;stroke:none}#mermaid-svg-BYcxhSyPtZcMoW3i .activation0{fill:#f4f4f4;stroke:#666}#mermaid-svg-BYcxhSyPtZcMoW3i .activation1{fill:#f4f4f4;stroke:#666}#mermaid-svg-BYcxhSyPtZcMoW3i .activation2{fill:#f4f4f4;stroke:#666}#mermaid-svg-BYcxhSyPtZcMoW3i .mermaid-main-font{font-family:"trebuchet ms", verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i .section{stroke:none;opacity:0.2}#mermaid-svg-BYcxhSyPtZcMoW3i .section0{fill:rgba(102,102,255,0.49)}#mermaid-svg-BYcxhSyPtZcMoW3i .section2{fill:#fff400}#mermaid-svg-BYcxhSyPtZcMoW3i .section1,#mermaid-svg-BYcxhSyPtZcMoW3i .section3{fill:#fff;opacity:0.2}#mermaid-svg-BYcxhSyPtZcMoW3i .sectionTitle0{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .sectionTitle1{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .sectionTitle2{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .sectionTitle3{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i .grid .tick{stroke:#d3d3d3;opacity:0.8;shape-rendering:crispEdges}#mermaid-svg-BYcxhSyPtZcMoW3i .grid .tick text{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i .grid path{stroke-width:0}#mermaid-svg-BYcxhSyPtZcMoW3i .today{fill:none;stroke:red;stroke-width:2px}#mermaid-svg-BYcxhSyPtZcMoW3i .task{stroke-width:2}#mermaid-svg-BYcxhSyPtZcMoW3i .taskText{text-anchor:middle;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i .taskText:not([font-size]){font-size:11px}#mermaid-svg-BYcxhSyPtZcMoW3i .taskTextOutsideRight{fill:#000;text-anchor:start;font-size:11px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i .taskTextOutsideLeft{fill:#000;text-anchor:end;font-size:11px}#mermaid-svg-BYcxhSyPtZcMoW3i .task.clickable{cursor:pointer}#mermaid-svg-BYcxhSyPtZcMoW3i .taskText.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-BYcxhSyPtZcMoW3i .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-BYcxhSyPtZcMoW3i .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-BYcxhSyPtZcMoW3i .taskText0,#mermaid-svg-BYcxhSyPtZcMoW3i .taskText1,#mermaid-svg-BYcxhSyPtZcMoW3i .taskText2,#mermaid-svg-BYcxhSyPtZcMoW3i .taskText3{fill:#fff}#mermaid-svg-BYcxhSyPtZcMoW3i .task0,#mermaid-svg-BYcxhSyPtZcMoW3i .task1,#mermaid-svg-BYcxhSyPtZcMoW3i .task2,#mermaid-svg-BYcxhSyPtZcMoW3i .task3{fill:#8a90dd;stroke:#534fbc}#mermaid-svg-BYcxhSyPtZcMoW3i .taskTextOutside0,#mermaid-svg-BYcxhSyPtZcMoW3i .taskTextOutside2{fill:#000}#mermaid-svg-BYcxhSyPtZcMoW3i .taskTextOutside1,#mermaid-svg-BYcxhSyPtZcMoW3i .taskTextOutside3{fill:#000}#mermaid-svg-BYcxhSyPtZcMoW3i .active0,#mermaid-svg-BYcxhSyPtZcMoW3i .active1,#mermaid-svg-BYcxhSyPtZcMoW3i .active2,#mermaid-svg-BYcxhSyPtZcMoW3i .active3{fill:#bfc7ff;stroke:#534fbc}#mermaid-svg-BYcxhSyPtZcMoW3i .activeText0,#mermaid-svg-BYcxhSyPtZcMoW3i .activeText1,#mermaid-svg-BYcxhSyPtZcMoW3i .activeText2,#mermaid-svg-BYcxhSyPtZcMoW3i .activeText3{fill:#000 !important}#mermaid-svg-BYcxhSyPtZcMoW3i .done0,#mermaid-svg-BYcxhSyPtZcMoW3i .done1,#mermaid-svg-BYcxhSyPtZcMoW3i .done2,#mermaid-svg-BYcxhSyPtZcMoW3i .done3{stroke:grey;fill:#d3d3d3;stroke-width:2}#mermaid-svg-BYcxhSyPtZcMoW3i .doneText0,#mermaid-svg-BYcxhSyPtZcMoW3i .doneText1,#mermaid-svg-BYcxhSyPtZcMoW3i .doneText2,#mermaid-svg-BYcxhSyPtZcMoW3i .doneText3{fill:#000 !important}#mermaid-svg-BYcxhSyPtZcMoW3i .crit0,#mermaid-svg-BYcxhSyPtZcMoW3i .crit1,#mermaid-svg-BYcxhSyPtZcMoW3i .crit2,#mermaid-svg-BYcxhSyPtZcMoW3i .crit3{stroke:#f88;fill:red;stroke-width:2}#mermaid-svg-BYcxhSyPtZcMoW3i .activeCrit0,#mermaid-svg-BYcxhSyPtZcMoW3i .activeCrit1,#mermaid-svg-BYcxhSyPtZcMoW3i .activeCrit2,#mermaid-svg-BYcxhSyPtZcMoW3i .activeCrit3{stroke:#f88;fill:#bfc7ff;stroke-width:2}#mermaid-svg-BYcxhSyPtZcMoW3i .doneCrit0,#mermaid-svg-BYcxhSyPtZcMoW3i .doneCrit1,#mermaid-svg-BYcxhSyPtZcMoW3i .doneCrit2,#mermaid-svg-BYcxhSyPtZcMoW3i .doneCrit3{stroke:#f88;fill:#d3d3d3;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}#mermaid-svg-BYcxhSyPtZcMoW3i .milestone{transform:rotate(45deg) scale(0.8, 0.8)}#mermaid-svg-BYcxhSyPtZcMoW3i .milestoneText{font-style:italic}#mermaid-svg-BYcxhSyPtZcMoW3i .doneCritText0,#mermaid-svg-BYcxhSyPtZcMoW3i .doneCritText1,#mermaid-svg-BYcxhSyPtZcMoW3i .doneCritText2,#mermaid-svg-BYcxhSyPtZcMoW3i .doneCritText3{fill:#000 !important}#mermaid-svg-BYcxhSyPtZcMoW3i .activeCritText0,#mermaid-svg-BYcxhSyPtZcMoW3i .activeCritText1,#mermaid-svg-BYcxhSyPtZcMoW3i .activeCritText2,#mermaid-svg-BYcxhSyPtZcMoW3i .activeCritText3{fill:#000 !important}#mermaid-svg-BYcxhSyPtZcMoW3i .titleText{text-anchor:middle;font-size:18px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i g.classGroup text{fill:#9370db;stroke:none;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:10px}#mermaid-svg-BYcxhSyPtZcMoW3i g.classGroup text .title{font-weight:bolder}#mermaid-svg-BYcxhSyPtZcMoW3i g.clickable{cursor:pointer}#mermaid-svg-BYcxhSyPtZcMoW3i g.classGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-BYcxhSyPtZcMoW3i g.classGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-BYcxhSyPtZcMoW3i .classLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.5}#mermaid-svg-BYcxhSyPtZcMoW3i .classLabel .label{fill:#9370db;font-size:10px}#mermaid-svg-BYcxhSyPtZcMoW3i .relation{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-BYcxhSyPtZcMoW3i .dashed-line{stroke-dasharray:3}#mermaid-svg-BYcxhSyPtZcMoW3i #compositionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-BYcxhSyPtZcMoW3i #compositionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-BYcxhSyPtZcMoW3i #aggregationStart{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-BYcxhSyPtZcMoW3i #aggregationEnd{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-BYcxhSyPtZcMoW3i #dependencyStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-BYcxhSyPtZcMoW3i #dependencyEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-BYcxhSyPtZcMoW3i #extensionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-BYcxhSyPtZcMoW3i #extensionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-BYcxhSyPtZcMoW3i .commit-id,#mermaid-svg-BYcxhSyPtZcMoW3i .commit-msg,#mermaid-svg-BYcxhSyPtZcMoW3i .branch-label{fill:lightgrey;color:lightgrey;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i .pieTitleText{text-anchor:middle;font-size:25px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i .slice{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i g.stateGroup text{fill:#9370db;stroke:none;font-size:10px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i g.stateGroup text{fill:#9370db;fill:#333;stroke:none;font-size:10px}#mermaid-svg-BYcxhSyPtZcMoW3i g.statediagram-cluster .cluster-label text{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i g.stateGroup .state-title{font-weight:bolder;fill:#000}#mermaid-svg-BYcxhSyPtZcMoW3i g.stateGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-BYcxhSyPtZcMoW3i g.stateGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-BYcxhSyPtZcMoW3i .transition{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-BYcxhSyPtZcMoW3i .stateGroup .composit{fill:white;border-bottom:1px}#mermaid-svg-BYcxhSyPtZcMoW3i .stateGroup .alt-composit{fill:#e0e0e0;border-bottom:1px}#mermaid-svg-BYcxhSyPtZcMoW3i .state-note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-BYcxhSyPtZcMoW3i .state-note text{fill:black;stroke:none;font-size:10px}#mermaid-svg-BYcxhSyPtZcMoW3i .stateLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.7}#mermaid-svg-BYcxhSyPtZcMoW3i .edgeLabel text{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .stateLabel text{fill:#000;font-size:10px;font-weight:bold;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-BYcxhSyPtZcMoW3i .node circle.state-start{fill:black;stroke:black}#mermaid-svg-BYcxhSyPtZcMoW3i .node circle.state-end{fill:black;stroke:white;stroke-width:1.5}#mermaid-svg-BYcxhSyPtZcMoW3i #statediagram-barbEnd{fill:#9370db}#mermaid-svg-BYcxhSyPtZcMoW3i .statediagram-cluster rect{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-BYcxhSyPtZcMoW3i .statediagram-cluster rect.outer{rx:5px;ry:5px}#mermaid-svg-BYcxhSyPtZcMoW3i .statediagram-state .divider{stroke:#9370db}#mermaid-svg-BYcxhSyPtZcMoW3i .statediagram-state .title-state{rx:5px;ry:5px}#mermaid-svg-BYcxhSyPtZcMoW3i .statediagram-cluster.statediagram-cluster .inner{fill:white}#mermaid-svg-BYcxhSyPtZcMoW3i .statediagram-cluster.statediagram-cluster-alt .inner{fill:#e0e0e0}#mermaid-svg-BYcxhSyPtZcMoW3i .statediagram-cluster .inner{rx:0;ry:0}#mermaid-svg-BYcxhSyPtZcMoW3i .statediagram-state rect.basic{rx:5px;ry:5px}#mermaid-svg-BYcxhSyPtZcMoW3i .statediagram-state rect.divider{stroke-dasharray:10,10;fill:#efefef}#mermaid-svg-BYcxhSyPtZcMoW3i .note-edge{stroke-dasharray:5}#mermaid-svg-BYcxhSyPtZcMoW3i .statediagram-note rect{fill:#fff5ad;stroke:#aa3;stroke-width:1px;rx:0;ry:0}:root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}#mermaid-svg-BYcxhSyPtZcMoW3i .error-icon{fill:#522}#mermaid-svg-BYcxhSyPtZcMoW3i .error-text{fill:#522;stroke:#522}#mermaid-svg-BYcxhSyPtZcMoW3i .edge-thickness-normal{stroke-width:2px}#mermaid-svg-BYcxhSyPtZcMoW3i .edge-thickness-thick{stroke-width:3.5px}#mermaid-svg-BYcxhSyPtZcMoW3i .edge-pattern-solid{stroke-dasharray:0}#mermaid-svg-BYcxhSyPtZcMoW3i .edge-pattern-dashed{stroke-dasharray:3}#mermaid-svg-BYcxhSyPtZcMoW3i .edge-pattern-dotted{stroke-dasharray:2}#mermaid-svg-BYcxhSyPtZcMoW3i .marker{fill:#333}#mermaid-svg-BYcxhSyPtZcMoW3i .marker.cross{stroke:#333}:root { --mermaid-font-family: "trebuchet ms", verdana, arial;}#mermaid-svg-BYcxhSyPtZcMoW3i {color: rgba(0, 0, 0, 0.75);font: ;}张三李四王五你好!李四, 最近怎么样?你最近怎么样,王五?我很好,谢谢!我很好,谢谢!李四想了很长时间, 文字太长了不适合放在一行.打量着王五...很好... 王五, 你怎么样?张三李四王五

这将产生一个流程图。:

#mermaid-svg-ViDNEmbVodP9cVKa .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:#333}#mermaid-svg-ViDNEmbVodP9cVKa .label text{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa .node rect,#mermaid-svg-ViDNEmbVodP9cVKa .node circle,#mermaid-svg-ViDNEmbVodP9cVKa .node ellipse,#mermaid-svg-ViDNEmbVodP9cVKa .node polygon,#mermaid-svg-ViDNEmbVodP9cVKa .node path{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-ViDNEmbVodP9cVKa .node .label{text-align:center;fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa .node.clickable{cursor:pointer}#mermaid-svg-ViDNEmbVodP9cVKa .arrowheadPath{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa .edgePath .path{stroke:#333;stroke-width:1.5px}#mermaid-svg-ViDNEmbVodP9cVKa .flowchart-link{stroke:#333;fill:none}#mermaid-svg-ViDNEmbVodP9cVKa .edgeLabel{background-color:#e8e8e8;text-align:center}#mermaid-svg-ViDNEmbVodP9cVKa .edgeLabel rect{opacity:0.9}#mermaid-svg-ViDNEmbVodP9cVKa .edgeLabel span{color:#333}#mermaid-svg-ViDNEmbVodP9cVKa .cluster rect{fill:#ffffde;stroke:#aa3;stroke-width:1px}#mermaid-svg-ViDNEmbVodP9cVKa .cluster text{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:12px;background:#ffffde;border:1px solid #aa3;border-radius:2px;pointer-events:none;z-index:100}#mermaid-svg-ViDNEmbVodP9cVKa .actor{stroke:#ccf;fill:#ECECFF}#mermaid-svg-ViDNEmbVodP9cVKa text.actor>tspan{fill:#000;stroke:none}#mermaid-svg-ViDNEmbVodP9cVKa .actor-line{stroke:grey}#mermaid-svg-ViDNEmbVodP9cVKa .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333}#mermaid-svg-ViDNEmbVodP9cVKa .messageLine1{stroke-width:1.5;stroke-dasharray:2, 2;stroke:#333}#mermaid-svg-ViDNEmbVodP9cVKa #arrowhead path{fill:#333;stroke:#333}#mermaid-svg-ViDNEmbVodP9cVKa .sequenceNumber{fill:#fff}#mermaid-svg-ViDNEmbVodP9cVKa #sequencenumber{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa #crosshead path{fill:#333;stroke:#333}#mermaid-svg-ViDNEmbVodP9cVKa .messageText{fill:#333;stroke:#333}#mermaid-svg-ViDNEmbVodP9cVKa .labelBox{stroke:#ccf;fill:#ECECFF}#mermaid-svg-ViDNEmbVodP9cVKa .labelText,#mermaid-svg-ViDNEmbVodP9cVKa .labelText>tspan{fill:#000;stroke:none}#mermaid-svg-ViDNEmbVodP9cVKa .loopText,#mermaid-svg-ViDNEmbVodP9cVKa .loopText>tspan{fill:#000;stroke:none}#mermaid-svg-ViDNEmbVodP9cVKa .loopLine{stroke-width:2px;stroke-dasharray:2, 2;stroke:#ccf;fill:#ccf}#mermaid-svg-ViDNEmbVodP9cVKa .note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-ViDNEmbVodP9cVKa .noteText,#mermaid-svg-ViDNEmbVodP9cVKa .noteText>tspan{fill:#000;stroke:none}#mermaid-svg-ViDNEmbVodP9cVKa .activation0{fill:#f4f4f4;stroke:#666}#mermaid-svg-ViDNEmbVodP9cVKa .activation1{fill:#f4f4f4;stroke:#666}#mermaid-svg-ViDNEmbVodP9cVKa .activation2{fill:#f4f4f4;stroke:#666}#mermaid-svg-ViDNEmbVodP9cVKa .mermaid-main-font{font-family:"trebuchet ms", verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa .section{stroke:none;opacity:0.2}#mermaid-svg-ViDNEmbVodP9cVKa .section0{fill:rgba(102,102,255,0.49)}#mermaid-svg-ViDNEmbVodP9cVKa .section2{fill:#fff400}#mermaid-svg-ViDNEmbVodP9cVKa .section1,#mermaid-svg-ViDNEmbVodP9cVKa .section3{fill:#fff;opacity:0.2}#mermaid-svg-ViDNEmbVodP9cVKa .sectionTitle0{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa .sectionTitle1{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa .sectionTitle2{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa .sectionTitle3{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa .grid .tick{stroke:#d3d3d3;opacity:0.8;shape-rendering:crispEdges}#mermaid-svg-ViDNEmbVodP9cVKa .grid .tick text{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa .grid path{stroke-width:0}#mermaid-svg-ViDNEmbVodP9cVKa .today{fill:none;stroke:red;stroke-width:2px}#mermaid-svg-ViDNEmbVodP9cVKa .task{stroke-width:2}#mermaid-svg-ViDNEmbVodP9cVKa .taskText{text-anchor:middle;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa .taskText:not([font-size]){font-size:11px}#mermaid-svg-ViDNEmbVodP9cVKa .taskTextOutsideRight{fill:#000;text-anchor:start;font-size:11px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa .taskTextOutsideLeft{fill:#000;text-anchor:end;font-size:11px}#mermaid-svg-ViDNEmbVodP9cVKa .task.clickable{cursor:pointer}#mermaid-svg-ViDNEmbVodP9cVKa .taskText.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-ViDNEmbVodP9cVKa .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-ViDNEmbVodP9cVKa .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-ViDNEmbVodP9cVKa .taskText0,#mermaid-svg-ViDNEmbVodP9cVKa .taskText1,#mermaid-svg-ViDNEmbVodP9cVKa .taskText2,#mermaid-svg-ViDNEmbVodP9cVKa .taskText3{fill:#fff}#mermaid-svg-ViDNEmbVodP9cVKa .task0,#mermaid-svg-ViDNEmbVodP9cVKa .task1,#mermaid-svg-ViDNEmbVodP9cVKa .task2,#mermaid-svg-ViDNEmbVodP9cVKa .task3{fill:#8a90dd;stroke:#534fbc}#mermaid-svg-ViDNEmbVodP9cVKa .taskTextOutside0,#mermaid-svg-ViDNEmbVodP9cVKa .taskTextOutside2{fill:#000}#mermaid-svg-ViDNEmbVodP9cVKa .taskTextOutside1,#mermaid-svg-ViDNEmbVodP9cVKa .taskTextOutside3{fill:#000}#mermaid-svg-ViDNEmbVodP9cVKa .active0,#mermaid-svg-ViDNEmbVodP9cVKa .active1,#mermaid-svg-ViDNEmbVodP9cVKa .active2,#mermaid-svg-ViDNEmbVodP9cVKa .active3{fill:#bfc7ff;stroke:#534fbc}#mermaid-svg-ViDNEmbVodP9cVKa .activeText0,#mermaid-svg-ViDNEmbVodP9cVKa .activeText1,#mermaid-svg-ViDNEmbVodP9cVKa .activeText2,#mermaid-svg-ViDNEmbVodP9cVKa .activeText3{fill:#000 !important}#mermaid-svg-ViDNEmbVodP9cVKa .done0,#mermaid-svg-ViDNEmbVodP9cVKa .done1,#mermaid-svg-ViDNEmbVodP9cVKa .done2,#mermaid-svg-ViDNEmbVodP9cVKa .done3{stroke:grey;fill:#d3d3d3;stroke-width:2}#mermaid-svg-ViDNEmbVodP9cVKa .doneText0,#mermaid-svg-ViDNEmbVodP9cVKa .doneText1,#mermaid-svg-ViDNEmbVodP9cVKa .doneText2,#mermaid-svg-ViDNEmbVodP9cVKa .doneText3{fill:#000 !important}#mermaid-svg-ViDNEmbVodP9cVKa .crit0,#mermaid-svg-ViDNEmbVodP9cVKa .crit1,#mermaid-svg-ViDNEmbVodP9cVKa .crit2,#mermaid-svg-ViDNEmbVodP9cVKa .crit3{stroke:#f88;fill:red;stroke-width:2}#mermaid-svg-ViDNEmbVodP9cVKa .activeCrit0,#mermaid-svg-ViDNEmbVodP9cVKa .activeCrit1,#mermaid-svg-ViDNEmbVodP9cVKa .activeCrit2,#mermaid-svg-ViDNEmbVodP9cVKa .activeCrit3{stroke:#f88;fill:#bfc7ff;stroke-width:2}#mermaid-svg-ViDNEmbVodP9cVKa .doneCrit0,#mermaid-svg-ViDNEmbVodP9cVKa .doneCrit1,#mermaid-svg-ViDNEmbVodP9cVKa .doneCrit2,#mermaid-svg-ViDNEmbVodP9cVKa .doneCrit3{stroke:#f88;fill:#d3d3d3;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}#mermaid-svg-ViDNEmbVodP9cVKa .milestone{transform:rotate(45deg) scale(0.8, 0.8)}#mermaid-svg-ViDNEmbVodP9cVKa .milestoneText{font-style:italic}#mermaid-svg-ViDNEmbVodP9cVKa .doneCritText0,#mermaid-svg-ViDNEmbVodP9cVKa .doneCritText1,#mermaid-svg-ViDNEmbVodP9cVKa .doneCritText2,#mermaid-svg-ViDNEmbVodP9cVKa .doneCritText3{fill:#000 !important}#mermaid-svg-ViDNEmbVodP9cVKa .activeCritText0,#mermaid-svg-ViDNEmbVodP9cVKa .activeCritText1,#mermaid-svg-ViDNEmbVodP9cVKa .activeCritText2,#mermaid-svg-ViDNEmbVodP9cVKa .activeCritText3{fill:#000 !important}#mermaid-svg-ViDNEmbVodP9cVKa .titleText{text-anchor:middle;font-size:18px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa g.classGroup text{fill:#9370db;stroke:none;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:10px}#mermaid-svg-ViDNEmbVodP9cVKa g.classGroup text .title{font-weight:bolder}#mermaid-svg-ViDNEmbVodP9cVKa g.clickable{cursor:pointer}#mermaid-svg-ViDNEmbVodP9cVKa g.classGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-ViDNEmbVodP9cVKa g.classGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-ViDNEmbVodP9cVKa .classLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.5}#mermaid-svg-ViDNEmbVodP9cVKa .classLabel .label{fill:#9370db;font-size:10px}#mermaid-svg-ViDNEmbVodP9cVKa .relation{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-ViDNEmbVodP9cVKa .dashed-line{stroke-dasharray:3}#mermaid-svg-ViDNEmbVodP9cVKa #compositionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-ViDNEmbVodP9cVKa #compositionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-ViDNEmbVodP9cVKa #aggregationStart{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-ViDNEmbVodP9cVKa #aggregationEnd{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-ViDNEmbVodP9cVKa #dependencyStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-ViDNEmbVodP9cVKa #dependencyEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-ViDNEmbVodP9cVKa #extensionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-ViDNEmbVodP9cVKa #extensionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-ViDNEmbVodP9cVKa .commit-id,#mermaid-svg-ViDNEmbVodP9cVKa .commit-msg,#mermaid-svg-ViDNEmbVodP9cVKa .branch-label{fill:lightgrey;color:lightgrey;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa .pieTitleText{text-anchor:middle;font-size:25px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa .slice{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa g.stateGroup text{fill:#9370db;stroke:none;font-size:10px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa g.stateGroup text{fill:#9370db;fill:#333;stroke:none;font-size:10px}#mermaid-svg-ViDNEmbVodP9cVKa g.statediagram-cluster .cluster-label text{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa g.stateGroup .state-title{font-weight:bolder;fill:#000}#mermaid-svg-ViDNEmbVodP9cVKa g.stateGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-ViDNEmbVodP9cVKa g.stateGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-ViDNEmbVodP9cVKa .transition{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-ViDNEmbVodP9cVKa .stateGroup .composit{fill:white;border-bottom:1px}#mermaid-svg-ViDNEmbVodP9cVKa .stateGroup .alt-composit{fill:#e0e0e0;border-bottom:1px}#mermaid-svg-ViDNEmbVodP9cVKa .state-note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-ViDNEmbVodP9cVKa .state-note text{fill:black;stroke:none;font-size:10px}#mermaid-svg-ViDNEmbVodP9cVKa .stateLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.7}#mermaid-svg-ViDNEmbVodP9cVKa .edgeLabel text{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa .stateLabel text{fill:#000;font-size:10px;font-weight:bold;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-ViDNEmbVodP9cVKa .node circle.state-start{fill:black;stroke:black}#mermaid-svg-ViDNEmbVodP9cVKa .node circle.state-end{fill:black;stroke:white;stroke-width:1.5}#mermaid-svg-ViDNEmbVodP9cVKa #statediagram-barbEnd{fill:#9370db}#mermaid-svg-ViDNEmbVodP9cVKa .statediagram-cluster rect{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-ViDNEmbVodP9cVKa .statediagram-cluster rect.outer{rx:5px;ry:5px}#mermaid-svg-ViDNEmbVodP9cVKa .statediagram-state .divider{stroke:#9370db}#mermaid-svg-ViDNEmbVodP9cVKa .statediagram-state .title-state{rx:5px;ry:5px}#mermaid-svg-ViDNEmbVodP9cVKa .statediagram-cluster.statediagram-cluster .inner{fill:white}#mermaid-svg-ViDNEmbVodP9cVKa .statediagram-cluster.statediagram-cluster-alt .inner{fill:#e0e0e0}#mermaid-svg-ViDNEmbVodP9cVKa .statediagram-cluster .inner{rx:0;ry:0}#mermaid-svg-ViDNEmbVodP9cVKa .statediagram-state rect.basic{rx:5px;ry:5px}#mermaid-svg-ViDNEmbVodP9cVKa .statediagram-state rect.divider{stroke-dasharray:10,10;fill:#efefef}#mermaid-svg-ViDNEmbVodP9cVKa .note-edge{stroke-dasharray:5}#mermaid-svg-ViDNEmbVodP9cVKa .statediagram-note rect{fill:#fff5ad;stroke:#aa3;stroke-width:1px;rx:0;ry:0}:root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}#mermaid-svg-ViDNEmbVodP9cVKa .error-icon{fill:#522}#mermaid-svg-ViDNEmbVodP9cVKa .error-text{fill:#522;stroke:#522}#mermaid-svg-ViDNEmbVodP9cVKa .edge-thickness-normal{stroke-width:2px}#mermaid-svg-ViDNEmbVodP9cVKa .edge-thickness-thick{stroke-width:3.5px}#mermaid-svg-ViDNEmbVodP9cVKa .edge-pattern-solid{stroke-dasharray:0}#mermaid-svg-ViDNEmbVodP9cVKa .edge-pattern-dashed{stroke-dasharray:3}#mermaid-svg-ViDNEmbVodP9cVKa .edge-pattern-dotted{stroke-dasharray:2}#mermaid-svg-ViDNEmbVodP9cVKa .marker{fill:#333}#mermaid-svg-ViDNEmbVodP9cVKa .marker.cross{stroke:#333}:root { --mermaid-font-family: "trebuchet ms", verdana, arial;}#mermaid-svg-ViDNEmbVodP9cVKa {color: rgba(0, 0, 0, 0.75);font: ;}

链接
长方形
圆角长方形
菱形
  • 关于 Mermaid 语法,参考 这儿,

FLowchart流程图

我们依旧会支持flowchart的流程图:

Created with Raphaël 2.2.0开始我的操作确认?结束yesno
  • 关于 Flowchart流程图 语法,参考 这儿.

导出与导入

导出

如果你想尝试使用此编辑器, 你可以在此篇文章任意编辑。当你完成了一篇文章的写作, 在上方工具栏找到 文章导出 ,生成一个.md文件或者.html文件进行本地保存。

导入

如果你想加载一篇你写过的.md文件,在上方工具栏可以选择导入功能进行对应扩展名的文件导入,
继续你的创作。


  1. mermaid语法说明 ↩︎

  2. 注脚的解释 ↩︎

PCA主成分分析/LDA线性判别分析/CCA典型相关分析 对比相关推荐

  1. 史上最好的LDA(线性判别分析)教程

    一.前言 最近由于研究需要,要用到线性判别分析(LDA).于是找了很多资料来看,结果发现大部分讲的都是理论知识,因此最后还是看的一知半解,后来终于找到了个英文的文档,作者由PCA引入LDA,看过后豁然 ...

  2. 机器学习】LDA线性判别分析

    [机器学习]LDA线性判别分析 1. LDA的基本思想 2. LDA求解方法 3. 将LDA推广到多分类 4. LDA算法流程 5. LDA和PCA对比 [附录1]瑞利商与广义瑞利商 线性判别分析 ( ...

  3. 中药材鉴别-方法:聚类;PCA 主成分分析;线性判别式分析;判别式检验

    基于线性判别式的中药材鉴别问题的数学模型 摘要 本文旨在讨论如何利用中药材的光谱特征鉴别药材的种类及产地,主要运用 系统聚类,PCA 主成分分析,线性判别,判别式运用等方法,使用了 MATLAB,Ex ...

  4. ML:基于自定义数据集利用Logistic、梯度下降算法GD、LoR逻辑回归、Perceptron感知器、SVM支持向量机、LDA线性判别分析算法进行二分类预测(决策边界可视化)

    ML:基于自定义数据集利用Logistic.梯度下降算法GD.LoR逻辑回归.Perceptron感知器.支持向量机(SVM_Linear.SVM_Rbf).LDA线性判别分析算法进行二分类预测(决策 ...

  5. R语言LDA线性判别分析

    LDA线性判别分析 R语言中LDA的实现过程 lda()函数理解 lda()用法 lda()参数介绍 lda示例 可视化结果 应用前景    最流行或最成熟的机器学习技术之一是线性判别分析 (LDA) ...

  6. 脑电信号(EEG)处理中的机器学习方法总结——回归模型,SVM、K近邻、人工神经网络、朴素贝叶斯、决策树和随机森林、集成学习、模糊逻辑、LDA线性判别分析、K-means聚类、强化学习、迁移学习

    本文归纳总结了机器学习在脑电分析中的应用,并详细介绍回归模型,SVM.K近邻.人工神经网络.朴素贝叶斯.决策树和随机森林.集成学习.模糊逻辑.LDA线性判别分析.K-means聚类.强化学习.迁移学习 ...

  7. 07_数据降维,降维算法,主成分分析PCA,NMF,线性判别分析LDA

    1.降维介绍 保证数据所具有的代表性特性或分布的情况下,将高维数据转化为低维数据. 聚类和分类都是无监督学习的典型任务,任务之间存在关联,比如某些高维数据的分类可以通过降维处理更好的获得. 降维过程可 ...

  8. PCA(主成分分析)和LDA(线性判别分析)的异同处及应用场景

    在机器学习领域,PCA和LDA都可以看成是数据降维的一种方式.但是PCA是无监督的,也就是说不需要知道样本对应的标签,而LDA是有监督的,需要知道每一个数据点对应的标签. 图的左边是PCA,它所作的只 ...

  9. LDA(线性判别分析)详解 —— matlab

    目录 前言 正题 1.LDA的思想 2. 瑞利商(Rayleigh quotient)与广义瑞利商(genralized Rayleigh quotient) 3. 二类LDA原理 4.多类LDA原理 ...

  10. LDA(线性判别分析(普通法))详解 —— python

    在这里和大家道个歉,因为我有一篇matlab的LDA和这篇内容大致相同,我就犯懒了,直接复制,没想到公式复制过来全变成了图片,然后造成了,排版有问题,非常难看,真的很抱歉!!!以后大家督促哈,我再犯懒 ...

最新文章

  1. R语言绘制环状条形图
  2. MobileViT: 一种更小,更快,高精度的轻量级Transformer端侧网络架构(附代码实现)...
  3. windows server 2012 远程连不上_CVE20201350 | Windows DNS Server远程代码执行漏洞通告
  4. 古典密码算法------替代密码算法
  5. 1031. 查验身份证(15)-PAT乙级真题
  6. 解决web网站被挂马清除方法
  7. Exploring Sparsity in Image Super-Resolution for Efficient Inference
  8. 数字涂色 疫情过后希望小学终于又重新开学了
  9. pytho_抓取下载音乐歌曲
  10. 笔记本电脑亮度无法调节问题
  11. 投资理财-曾经一起投资理财的朋友们
  12. 无人车路径规划算法---(4)基于搜索的路径规划算法 II(贪心/Astar)
  13. 软件测试前置基础知识(基本概念,DOS命令)
  14. 【DPDK】dpdk样例源码解析之二:dpdk-helloworld
  15. 为什么磁盘1次随机读需10ms
  16. VMware Workstation 14打开虚拟机黑屏解决方法 —— 修复LSP
  17. ❀数据集❀基于计算机视觉的情绪识别数据集
  18. Python项目——飞机大战!
  19. 移远EC20在linux下驱动移植
  20. 昆仑通态触摸屏的使用

热门文章

  1. 国标GB28181协议国标平台EasyGBS客户端作为上级平台如何跟下级海康8700平台对接?
  2. Python爬取豆瓣网图书评论
  3. Win7安装IIS详解
  4. linux 海思hi3798m_海思Hi3798模块芯片,Hi3798处理器参数介绍
  5. 一阶广义差分模型_实验五 自相关性 -
  6. 华为项目CMO(CIE)的经历,对软件工程敏捷开发的实践
  7. 2020年CISP线下考试逐渐恢复啦
  8. matlab ode 实数,关于ode45中erf函数(输入必须为实数完全数的报错问题)
  9. python爬虫(十一)爬取贴吧图片
  10. 三菱触摸屏通讯错误_一台威纶通触摸屏与多台三菱PLC通讯案例