1 | chapters: false |
LME线性混合模型处理ERP
处理流程
根据论文《线性混合效应模型在婴儿和儿童事件相关潜力研究中的效用》1的处理过程找到了GitHub上的数据处理脚本。脚本共有7个,其中1-5是Matlab从Continues EEG到ERP的处理过程,脚本6-7是R语言对ERP进行LME混合线性模型的处理过程,如下图。
吧啦吧啦吧啦,见Table 1
a | b | c | b |
---|---|---|---|
1 | 2 | 3 | 2 |
3 | 2 | 1 | 2 |
引用一个图Figure 1, 2
测试公式:见公式Equation 1 \[P_i(x) = \sum_i a_i x^i\qquad{(1)}\]
1 | pandoc -i '.\LME线性混合模型处理ERP(test).md' -o test.docx --filter pandoc-crossref --cite |
hexo中使用pandoc
安装
hexo-renderer-pandoc
1
npm install hexo-renderer-pandoc --save
修改hexo文件夹下的
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20pandoc:
filters:
- pandoc-crossref
extra:
- citeproc:
- bibliography: "/Users/macgazelle/blog/hexo/source/_posts/EEG.bib"
- csl: "/Users/macgazelle/blog/hexo/source/_posts/chinese-gb7714-2015-numeric.csl"
meta:
- link-citations: true
- reference-section-title: Reference
- colorlinks: true
- lang: en-GB
- figPrefix: "Figure"
- tblPrefix: "Table"
- tableTitle: "Table"
- figureTitle: "Figure"
- titleDelim: .
- eqnPrefix: "Equation"
template:
mathEngine:头文件yml记得要加两句
1
2disableNunjucks: true
mathjax: truehexo部署的时候,记得clean一下,用下面的命令
1
hexo clean && hexo g && hexo d
- 1.Mjha B , Skma B , Lcba B . Utility of Linear Mixed Effects Models for Event-Related Potential Research with Infants and Children. 2022. https://www.sciencedirect.com/science/article/pii/S1878929322000147 ↩︎