-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1880 lines (1250 loc) · 79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>深度识医</title>
<link rel="alternate" hreflang="" href="https://lengyueyang.github.io/en/" />
<meta name="renderer" content="webkit" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="MobileOptimized" content="width"/>
<meta name="HandheldFriendly" content="true"/>
<meta name="applicable-device" content="pc,mobile">
<meta name="theme-color" content="#f8f5ec" />
<meta name="msapplication-navbutton-color" content="#f8f5ec">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#f8f5ec">
<meta name="mobile-web-app-capable" content="yes">
<meta name="author" content="lengyueyang" />
<meta name="description" content="lengyueyang’s personal blog." />
<meta name="keywords" content="Orgmode, Blog, Personal, Data Science" />
<meta name="generator" content="Hugo 0.55.6" />
<link rel="canonical" href="https://lengyueyang.github.io/" />
<link href="/index.xml" rel="alternate" type="application/rss+xml" title="深度识医" />
<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="/sass/jane.min.af20b78e95c84de86b00a0242a4a77bd2601700e1b250edf27537d957ac0041d.css" integrity="sha256-ryC3jpXITehrAKAkKkp3vSYBcA4bJQ7fJ1N9lXrABB0=" media="screen" crossorigin="anonymous">
<meta property="og:title" content="深度识医" />
<meta property="og:description" content="lengyueyang’s personal blog." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lengyueyang.github.io/" />
<meta property="og:updated_time" content="2020-03-14T00:00:00+08:00"/><meta property="og:site_name" content="深度识医" />
<meta itemprop="name" content="深度识医">
<meta itemprop="description" content="lengyueyang’s personal blog.">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="深度识医"/>
<meta name="twitter:description" content="lengyueyang’s personal blog."/>
<!--[if lte IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/classlist/1.1.20170427/classList.min.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/html5shiv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dest/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="mobile-navbar" class="mobile-navbar">
<div class="mobile-header-logo">
<a href="/" class="logo">深度识医</a>
</div>
<div class="mobile-navbar-icon">
<span></span>
<span></span>
<span></span>
</div>
</div>
<nav id="mobile-menu" class="mobile-menu slideout-menu">
<ul class="mobile-menu-list">
<li class="mobile-menu-item">
<div class="mobile-menu-parent">
<span class="mobile-submenu-open"></span>
<a href="https://lengyueyang.github.io/categories/%E5%8C%BB%E5%AD%A6%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6/">
医学数据科学
</a>
</div>
<ul class="mobile-submenu-list">
<li>
<a href="https://lengyueyang.github.io/categories/%E6%95%B0%E5%AD%A6%E5%9F%BA%E7%A1%80/">数学基础</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E7%BB%9F%E8%AE%A1%E5%9F%BA%E7%A1%80/">统计基础</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E7%AE%97%E6%B3%95/">算法</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E7%BC%96%E7%A8%8B/">编程</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0/">机器学习</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/nlp-kg/">NLP-KG</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/">数据分析</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E5%8C%BB%E5%AD%A6%E7%9F%A5%E8%AF%86/">医学知识</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/cdss/">CDSS</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E6%96%87%E7%AB%A0%E5%A4%8D%E7%8E%B0/">文章复现</a>
</li>
</ul>
</li><li class="mobile-menu-item">
<div class="mobile-menu-parent">
<span class="mobile-submenu-open"></span>
<a href="https://lengyueyang.github.io/categories/%E5%B7%A5%E5%85%B7%E9%93%BE/">
工具链
</a>
</div>
<ul class="mobile-submenu-list">
<li>
<a href="https://lengyueyang.github.io/categories/linux/">Linux</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/gentoo/">Gentoo</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/spacemacs/">Spacemacs</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/org-mode/">Org-mode</a>
</li>
</ul>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/categories/%E7%94%9F%E6%B4%BB/">生活</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/post/">归档</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/tags/">标签</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/categories/">分类</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/links">链接</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/about">关于</a>
</li>
<li class="mobile-menu-item">
<div class="mobile-menu-parent mobile-menu-item-lang">
<span class="mobile-submenu-open"></span>
<a href="#">
<i class="iconfont">
<svg height="16" width="16" version="1.1" viewBox="0 0 128 128">
<path d="m 64.719501,1.4279814 c -34.694029,0 -62.8192028,28.1251726 -62.8192028,62.8192016 0,34.694036 28.1251738,62.819207 62.8192028,62.819207 4.245691,0 8.392744,-0.42239 12.402214,-1.2253 -1.616124,-0.77296 -1.792473,-6.57213 -0.194346,-9.87848 1.779059,-3.68082 7.361625,-13.00555 1.840404,-16.134231 -5.521221,-3.12869 -3.98755,-4.53968 -7.361625,-8.15914 -3.374083,-3.61947 -1.994181,-4.16357 -2.208492,-5.09179 -0.736158,-3.19004 3.251385,-7.975096 3.435429,-8.465866 0.184043,-0.490781 0.184043,-2.331182 0.122689,-2.883308 -0.06131,-0.552125 -2.515051,-2.024446 -3.12852,-2.085791 -0.613469,-0.06133 -0.920209,0.98154 -1.77906,1.042896 -0.858856,0.06133 -4.601018,-2.269838 -5.39853,-2.883308 -0.797504,-0.61346 -1.165591,-2.085792 -2.269828,-3.190033 -1.104247,-1.104252 -1.226945,-0.24539 -2.944651,-0.920206 -1.717714,-0.674812 -7.238935,-2.69926 -11.471867,-4.416975 -4.23294,-1.717714 -4.601019,-4.125615 -4.662365,-5.827954 -0.06131,-1.702333 -2.57657,-4.171587 -3.756227,-5.950646 -1.179335,-1.77906 -1.396914,-4.232932 -1.826339,-3.680809 -0.429425,0.552114 2.208484,6.993538 1.77906,7.177582 -0.429425,0.184043 -1.349635,-1.77906 -2.576572,-3.374083 -1.226936,-1.595016 1.28829,-0.736159 -2.637915,-8.465864 -3.926198,-7.729705 1.226944,-11.671284 1.472324,-15.704806 0.24539,-4.033514 3.312738,1.472325 1.717715,-1.104238 -1.595016,-2.576571 0.122697,-7.975094 -1.104246,-9.938197 -1.226936,-1.963102 -8.220475,2.208492 -8.220475,2.208492 0.184036,-1.901758 6.134682,-5.153142 10.428966,-8.1591366 4.294277,-3.005996 6.91682,-0.674813 10.367621,0.4294236 3.450803,1.104246 3.680817,0.736167 2.515226,-0.368079 -1.165591,-1.1042446 0.49077,-1.6563686 3.190031,-1.2269356 2.699269,0.429425 3.435428,3.6808086 7.545669,3.3740746 4.110242,-0.306735 0.429425,0.797511 0.981548,1.840412 0.552123,1.042892 -0.613468,0.920202 -3.312729,2.760607 -2.699262,1.840403 0.06131,1.840403 4.846407,5.337177 4.785055,3.496773 3.312729,-2.331183 2.821952,-4.907753 -0.490777,-2.576563 3.496773,-0.552115 3.496773,-0.552115 2.944651,1.963094 2.400546,0.107972 4.547684,0.782784 2.147139,0.674814 7.967076,5.597286 7.967076,5.597286 -7.300273,3.98755 -2.699261,4.416975 -1.472325,5.337178 1.226937,0.920202 -2.515218,2.699261 -2.515218,2.699261 -1.53367,-1.53367 -1.779059,0.06131 -2.760614,0.613476 -0.981548,0.552115 -0.06131,1.963095 -0.06131,1.963095 -5.076415,0.797512 -3.926198,6.13469 -3.864852,7.422971 0.06131,1.288289 -3.251385,3.251384 -4.110242,5.091796 -0.858857,1.840405 2.208491,5.827948 0.613468,6.073336 -1.595016,0.24539 -3.190031,-6.011991 -11.778601,-3.680808 -2.589322,0.702954 -8.343174,3.680808 -5.275824,9.754153 3.06734,6.073336 8.15913,-1.717714 9.876843,-0.858857 1.717714,0.858857 -0.490778,4.72371 -0.122691,4.785055 0.368079,0.06131 4.8464,0.168662 5.09179,5.398522 0.245388,5.229868 6.809502,4.785065 8.220482,4.907755 1.410972,0.12269 6.134682,-3.864859 6.809502,-4.048894 0.674815,-0.184034 3.374076,-2.453876 9.263377,0.920195 5.889301,3.374089 8.895296,2.883308 10.919743,4.294285 2.02445,1.410987 0.61347,4.232939 2.51523,5.153134 1.90175,0.920217 9.50876,-0.306736 11.41051,2.821966 1.90176,3.1287 -7.8524,18.833491 -10.91974,20.551201 -3.06734,1.71772 -4.478321,5.64392 -7.545665,8.15913 -3.067349,2.51523 -7.361625,5.62854 -11.410522,8.03646 -3.583968,2.1311 -4.228845,5.949 -5.825333,7.15419 28.11404,-6.24545 49.13623,-31.328971 49.13623,-61.323497 0,-34.694029 -28.125171,-62.8192016 -62.819206,-62.8192016 z M 79.442753,60.382331 c -0.858857,0.245389 -2.637917,1.840405 -6.993547,-0.736166 -4.35563,-2.576564 -7.361625,-2.085794 -7.729705,-2.515218 0,0 -0.368079,-1.0429 1.533671,-1.226937 3.905098,-0.378065 8.833951,3.619464 9.938196,3.680809 1.104246,0.06131 1.656361,-1.104245 3.619464,-0.471631 1.963103,0.631953 0.490777,1.023755 -0.368079,1.269143 z M 58.891546,7.6853614 c -0.427786,-0.311152 0.354344,-0.669418 0.82058,-1.288281 0.269103,-0.357613 0.0695,-0.951289 0.406356,-1.28829 0.92021,-0.920203 5.459876,-2.208485 4.572225,0.306734 -0.887321,2.515226 -5.12434,2.760614 -5.799161,2.269837 z m 10.98109,7.9750936 c -1.533672,-0.06131 -5.14381,-0.442837 -4.478321,-1.104246 2.591952,-2.576563 -0.981548,-3.312729 -3.190039,-3.496766 -2.208485,-0.184043 -3.128687,-1.4109786 -2.02444,-1.5336776 1.104237,-0.12269 5.521213,0.06139 6.257379,0.6748206 0.736158,0.613469 4.723709,2.208485 4.969099,3.374076 0.24538,1.16559 0,2.147138 -1.533678,2.085793 z M 83.184914,15.23103 c -1.226943,0.981547 -7.400887,-3.521968 -8.588569,-4.539674 -5.153134,-4.4169746 -7.913742,-2.9446486 -8.995903,-3.6808086 -1.082485,-0.736166 -0.696897,-1.717713 0.959464,-3.190039 1.656369,-1.472325 6.318732,0.490778 9.017994,0.797512 2.699262,0.306734 5.827955,2.392527 5.889301,4.871925 0.06131,2.4792256 2.944649,4.7595296 1.717713,5.7410846 z" />
</svg>
</i>
语言
</a>
</div>
<ul class="mobile-submenu-list">
<li>
<a href="https://lengyueyang.github.io/en/">English</a>
</li>
<li>
<a href="https://lengyueyang.github.io/"><strong>中文</strong></a>
</li>
</ul>
</li>
</ul>
</nav>
<link rel="stylesheet" href="/lib/photoswipe/photoswipe.min.css" />
<link rel="stylesheet" href="/lib/photoswipe/default-skin/default-skin.min.css" />
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
<button class="pswp__button pswp__button--share" title="Share"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
</button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
</button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div>
<header id="header" class="header container">
<div class="logo-wrapper">
<a href="/" class="logo">
深度识医
</a>
</div>
<nav class="site-navbar">
<ul id="menu" class="menu">
<li class="menu-item">
<a class="menu-item-link menu-parent" href="https://lengyueyang.github.io/categories/%E5%8C%BB%E5%AD%A6%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6/">医学数据科学</a>
<ul class="submenu">
<li>
<a href="https://lengyueyang.github.io/categories/%E6%95%B0%E5%AD%A6%E5%9F%BA%E7%A1%80/">数学基础</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E7%BB%9F%E8%AE%A1%E5%9F%BA%E7%A1%80/">统计基础</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E7%AE%97%E6%B3%95/">算法</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E7%BC%96%E7%A8%8B/">编程</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0/">机器学习</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/nlp-kg/">NLP-KG</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/">数据分析</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E5%8C%BB%E5%AD%A6%E7%9F%A5%E8%AF%86/">医学知识</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/cdss/">CDSS</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/%E6%96%87%E7%AB%A0%E5%A4%8D%E7%8E%B0/">文章复现</a>
</li>
</ul>
</li>
<li class="menu-item">
<a class="menu-item-link menu-parent" href="https://lengyueyang.github.io/categories/%E5%B7%A5%E5%85%B7%E9%93%BE/">工具链</a>
<ul class="submenu">
<li>
<a href="https://lengyueyang.github.io/categories/linux/">Linux</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/gentoo/">Gentoo</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/spacemacs/">Spacemacs</a>
</li>
<li>
<a href="https://lengyueyang.github.io/categories/org-mode/">Org-mode</a>
</li>
</ul>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/categories/%E7%94%9F%E6%B4%BB/">生活</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/post/">归档</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/tags/">标签</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/categories/">分类</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/links">链接</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://lengyueyang.github.io/about">关于</a>
</li>
<li class="menu-item">
<a class="menu-item-link menu-parent menu-item-lang" href="#">
<i class="iconfont">
<svg height="16" width="16" version="1.1" viewBox="0 0 128 128">
<path d="m 64.719501,1.4279814 c -34.694029,0 -62.8192028,28.1251726 -62.8192028,62.8192016 0,34.694036 28.1251738,62.819207 62.8192028,62.819207 4.245691,0 8.392744,-0.42239 12.402214,-1.2253 -1.616124,-0.77296 -1.792473,-6.57213 -0.194346,-9.87848 1.779059,-3.68082 7.361625,-13.00555 1.840404,-16.134231 -5.521221,-3.12869 -3.98755,-4.53968 -7.361625,-8.15914 -3.374083,-3.61947 -1.994181,-4.16357 -2.208492,-5.09179 -0.736158,-3.19004 3.251385,-7.975096 3.435429,-8.465866 0.184043,-0.490781 0.184043,-2.331182 0.122689,-2.883308 -0.06131,-0.552125 -2.515051,-2.024446 -3.12852,-2.085791 -0.613469,-0.06133 -0.920209,0.98154 -1.77906,1.042896 -0.858856,0.06133 -4.601018,-2.269838 -5.39853,-2.883308 -0.797504,-0.61346 -1.165591,-2.085792 -2.269828,-3.190033 -1.104247,-1.104252 -1.226945,-0.24539 -2.944651,-0.920206 -1.717714,-0.674812 -7.238935,-2.69926 -11.471867,-4.416975 -4.23294,-1.717714 -4.601019,-4.125615 -4.662365,-5.827954 -0.06131,-1.702333 -2.57657,-4.171587 -3.756227,-5.950646 -1.179335,-1.77906 -1.396914,-4.232932 -1.826339,-3.680809 -0.429425,0.552114 2.208484,6.993538 1.77906,7.177582 -0.429425,0.184043 -1.349635,-1.77906 -2.576572,-3.374083 -1.226936,-1.595016 1.28829,-0.736159 -2.637915,-8.465864 -3.926198,-7.729705 1.226944,-11.671284 1.472324,-15.704806 0.24539,-4.033514 3.312738,1.472325 1.717715,-1.104238 -1.595016,-2.576571 0.122697,-7.975094 -1.104246,-9.938197 -1.226936,-1.963102 -8.220475,2.208492 -8.220475,2.208492 0.184036,-1.901758 6.134682,-5.153142 10.428966,-8.1591366 4.294277,-3.005996 6.91682,-0.674813 10.367621,0.4294236 3.450803,1.104246 3.680817,0.736167 2.515226,-0.368079 -1.165591,-1.1042446 0.49077,-1.6563686 3.190031,-1.2269356 2.699269,0.429425 3.435428,3.6808086 7.545669,3.3740746 4.110242,-0.306735 0.429425,0.797511 0.981548,1.840412 0.552123,1.042892 -0.613468,0.920202 -3.312729,2.760607 -2.699262,1.840403 0.06131,1.840403 4.846407,5.337177 4.785055,3.496773 3.312729,-2.331183 2.821952,-4.907753 -0.490777,-2.576563 3.496773,-0.552115 3.496773,-0.552115 2.944651,1.963094 2.400546,0.107972 4.547684,0.782784 2.147139,0.674814 7.967076,5.597286 7.967076,5.597286 -7.300273,3.98755 -2.699261,4.416975 -1.472325,5.337178 1.226937,0.920202 -2.515218,2.699261 -2.515218,2.699261 -1.53367,-1.53367 -1.779059,0.06131 -2.760614,0.613476 -0.981548,0.552115 -0.06131,1.963095 -0.06131,1.963095 -5.076415,0.797512 -3.926198,6.13469 -3.864852,7.422971 0.06131,1.288289 -3.251385,3.251384 -4.110242,5.091796 -0.858857,1.840405 2.208491,5.827948 0.613468,6.073336 -1.595016,0.24539 -3.190031,-6.011991 -11.778601,-3.680808 -2.589322,0.702954 -8.343174,3.680808 -5.275824,9.754153 3.06734,6.073336 8.15913,-1.717714 9.876843,-0.858857 1.717714,0.858857 -0.490778,4.72371 -0.122691,4.785055 0.368079,0.06131 4.8464,0.168662 5.09179,5.398522 0.245388,5.229868 6.809502,4.785065 8.220482,4.907755 1.410972,0.12269 6.134682,-3.864859 6.809502,-4.048894 0.674815,-0.184034 3.374076,-2.453876 9.263377,0.920195 5.889301,3.374089 8.895296,2.883308 10.919743,4.294285 2.02445,1.410987 0.61347,4.232939 2.51523,5.153134 1.90175,0.920217 9.50876,-0.306736 11.41051,2.821966 1.90176,3.1287 -7.8524,18.833491 -10.91974,20.551201 -3.06734,1.71772 -4.478321,5.64392 -7.545665,8.15913 -3.067349,2.51523 -7.361625,5.62854 -11.410522,8.03646 -3.583968,2.1311 -4.228845,5.949 -5.825333,7.15419 28.11404,-6.24545 49.13623,-31.328971 49.13623,-61.323497 0,-34.694029 -28.125171,-62.8192016 -62.819206,-62.8192016 z M 79.442753,60.382331 c -0.858857,0.245389 -2.637917,1.840405 -6.993547,-0.736166 -4.35563,-2.576564 -7.361625,-2.085794 -7.729705,-2.515218 0,0 -0.368079,-1.0429 1.533671,-1.226937 3.905098,-0.378065 8.833951,3.619464 9.938196,3.680809 1.104246,0.06131 1.656361,-1.104245 3.619464,-0.471631 1.963103,0.631953 0.490777,1.023755 -0.368079,1.269143 z M 58.891546,7.6853614 c -0.427786,-0.311152 0.354344,-0.669418 0.82058,-1.288281 0.269103,-0.357613 0.0695,-0.951289 0.406356,-1.28829 0.92021,-0.920203 5.459876,-2.208485 4.572225,0.306734 -0.887321,2.515226 -5.12434,2.760614 -5.799161,2.269837 z m 10.98109,7.9750936 c -1.533672,-0.06131 -5.14381,-0.442837 -4.478321,-1.104246 2.591952,-2.576563 -0.981548,-3.312729 -3.190039,-3.496766 -2.208485,-0.184043 -3.128687,-1.4109786 -2.02444,-1.5336776 1.104237,-0.12269 5.521213,0.06139 6.257379,0.6748206 0.736158,0.613469 4.723709,2.208485 4.969099,3.374076 0.24538,1.16559 0,2.147138 -1.533678,2.085793 z M 83.184914,15.23103 c -1.226943,0.981547 -7.400887,-3.521968 -8.588569,-4.539674 -5.153134,-4.4169746 -7.913742,-2.9446486 -8.995903,-3.6808086 -1.082485,-0.736166 -0.696897,-1.717713 0.959464,-3.190039 1.656369,-1.472325 6.318732,0.490778 9.017994,0.797512 2.699262,0.306734 5.827955,2.392527 5.889301,4.871925 0.06131,2.4792256 2.944649,4.7595296 1.717713,5.7410846 z" />
</svg>
</i>
中文
</a>
<ul class="submenu">
<li>
<a href="https://lengyueyang.github.io/en/">English</a>
</li>
</ul>
</li>
</ul>
</nav>
</header>
<div id="mobile-panel">
<main id="main" class="main bg-llight">
<div class="content-wrapper">
<div id="content" class="content container">
<section id="posts" class="posts">
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/tools/spacemacs/spacemacs%E5%AD%A6%E4%B9%A0/">Spacemacs学习</a>
</h1>
<div class="post-meta">
<time datetime="2016-02-14" class="post-time">
2016-02-14
</time>
<div class="post-category">
<a href="https://lengyueyang.github.io/categories/spacemacs/"> Spacemacs </a>
<a href="https://lengyueyang.github.io/categories/%E5%B7%A5%E5%85%B7%E9%93%BE/"> 工具链 </a>
</div>
<span class="more-meta"> 约 3630 字 </span>
<span class="more-meta"> 预计阅读 8 分钟 </span>
<span class="more-meta"> <a href="https://lengyueyang.github.io/post/tools/spacemacs/spacemacs%E5%AD%A6%E4%B9%A0/#disqus_thread">评论</a> </span>
<span id="/post/tools/spacemacs/spacemacs%E5%AD%A6%E4%B9%A0/" class="leancloud_visitors" data-flag-title="Spacemacs学习">
<span class="post-meta-item-text"> | 阅读 </span>
<span class="leancloud-visitors-count"></span>
</span>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h2 id="useful-keybinding">Useful keybinding</h2>
<h3 id="buffer-and-window">Buffer and window</h3>
<ul>
<li>SPC f s Save a buffer</li>
<li>SPC f S Save all opened buffers</li>
<li>SPC f f Open the buffer in now directory</li>
<li>SPC f r Open the buffer and search in recently files</li>
<li>SPC b b Open or switch a buffer with helm</li>
<li>SPC b d Delete a buffer</li>
<li>SPC b K Delete other buffer but this</li>
<li>SPC w v/s split v or s</li>
<li>SPC h/l/j/k switch window</li>
</ul>
</div>
<div class="read-more">
<a href="/post/tools/spacemacs/spacemacs%E5%AD%A6%E4%B9%A0/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/data_science/programming/python-pyenv-%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E6%80%BB%E7%BB%93/">Python-Pyenv 使用方法总结</a>
</h1>
<div class="post-meta">
<time datetime="2017-09-19" class="post-time">
2017-09-19
</time>
<div class="post-category">
<a href="https://lengyueyang.github.io/categories/%E7%BC%96%E7%A8%8B/"> 编程 </a>
<a href="https://lengyueyang.github.io/categories/%E5%8C%BB%E5%AD%A6%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6/"> 医学数据科学 </a>
</div>
<span class="more-meta"> 约 1130 字 </span>
<span class="more-meta"> 预计阅读 3 分钟 </span>
<span class="more-meta"> <a href="https://lengyueyang.github.io/post/data_science/programming/python-pyenv-%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E6%80%BB%E7%BB%93/#disqus_thread">评论</a> </span>
<span id="/post/data_science/programming/python-pyenv-%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E6%80%BB%E7%BB%93/" class="leancloud_visitors" data-flag-title="Python-Pyenv 使用方法总结">
<span class="post-meta-item-text"> | 阅读 </span>
<span class="leancloud-visitors-count"></span>
</span>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h2 id="pyenv-简介">Pyenv 简介</h2>
<p>在使用 python 进行编程时, 经常遇到多个编程环境共存问题. pyenv 可以很好的解决这个问题, 本教程根据是学习使用 pyenv 的记录.</p>
</div>
<div class="read-more">
<a href="/post/data_science/programming/python-pyenv-%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E6%80%BB%E7%BB%93/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/data_science/math/%E9%AB%98%E7%AD%89%E4%BB%A3%E6%95%B0-%E7%BA%BF%E6%80%A7%E6%96%B9%E7%A8%8B%E7%BB%84%E7%9A%84%E8%A7%A3%E6%B3%95/">高等代数-线性方程组的解法</a>
</h1>
<div class="post-meta">
<time datetime="2017-08-07" class="post-time">
2017-08-07
</time>
<div class="post-category">
<a href="https://lengyueyang.github.io/categories/%E6%95%B0%E5%AD%A6%E5%9F%BA%E7%A1%80/"> 数学基础 </a>
<a href="https://lengyueyang.github.io/categories/%E5%8C%BB%E5%AD%A6%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6/"> 医学数据科学 </a>
</div>
<span class="more-meta"> 约 1693 字 </span>
<span class="more-meta"> 预计阅读 4 分钟 </span>
<span class="more-meta"> <a href="https://lengyueyang.github.io/post/data_science/math/%E9%AB%98%E7%AD%89%E4%BB%A3%E6%95%B0-%E7%BA%BF%E6%80%A7%E6%96%B9%E7%A8%8B%E7%BB%84%E7%9A%84%E8%A7%A3%E6%B3%95/#disqus_thread">评论</a> </span>
<span id="/post/data_science/math/%E9%AB%98%E7%AD%89%E4%BB%A3%E6%95%B0-%E7%BA%BF%E6%80%A7%E6%96%B9%E7%A8%8B%E7%BB%84%E7%9A%84%E8%A7%A3%E6%B3%95/" class="leancloud_visitors" data-flag-title="高等代数-线性方程组的解法">
<span class="post-meta-item-text"> | 阅读 </span>
<span class="leancloud-visitors-count"></span>
</span>
</div>
</header>
<div class="post-content">
<div class="post-summary">
解线性方差组的矩阵消元法 左端都是未知量 \(x_1, x_2, \dots , x_n\) 的一次其次式,右端是常数的方程组称为线性方程组,每个未知量前面的数称为系数,右端的项称为常数
</div>
<div class="read-more">
<a href="/post/data_science/math/%E9%AB%98%E7%AD%89%E4%BB%A3%E6%95%B0-%E7%BA%BF%E6%80%A7%E6%96%B9%E7%A8%8B%E7%BB%84%E7%9A%84%E8%A7%A3%E6%B3%95/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/life/%E6%88%BF%E5%AD%90%E5%8C%97%E4%BA%AC/">房子,北京</a>
</h1>
<div class="post-meta">
<time datetime="2017-03-15" class="post-time">
2017-03-15
</time>
<div class="post-category">
<a href="https://lengyueyang.github.io/categories/%E7%94%9F%E6%B4%BB/"> 生活 </a>
</div>
<span class="more-meta"> 约 702 字 </span>
<span class="more-meta"> 预计阅读 2 分钟 </span>
<span class="more-meta"> <a href="https://lengyueyang.github.io/post/life/%E6%88%BF%E5%AD%90%E5%8C%97%E4%BA%AC/#disqus_thread">评论</a> </span>
<span id="/post/life/%E6%88%BF%E5%AD%90%E5%8C%97%E4%BA%AC/" class="leancloud_visitors" data-flag-title="房子,北京">
<span class="post-meta-item-text"> | 阅读 </span>
<span class="leancloud-visitors-count"></span>
</span>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h2 id="缘起">缘起</h2>
<p>今天早上看了一篇同学分享的文章–<a href="http://mp.weixin.qq.com/s?%5F%5Fbiz=MjM5OTQ0MjM4MA==&mid=2651896417&idx=2&sn=3f956b783256b99e925c1c062b50a773&chksm=bcdf78c28ba8f1d416901eae3e4cea7230f176c975007d4af61c153303ecc75a498ce7711a31&mpshare=1&scene=1&srcid=0313S3DzfdNKeRHFAUfjBRoZ#rd">《清华硕士集体逃离北京!一枚中科院科研人员的自白: 我为什么选择离开》</a></p>
<p>又一次被现实刺痛,思绪满天飞,于是写下这篇博客</p>
</div>
<div class="read-more">
<a href="/post/life/%E6%88%BF%E5%AD%90%E5%8C%97%E4%BA%AC/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/tools/spacemacs/%E7%94%A8mu4e%E7%AE%A1%E7%90%86%E9%82%AE%E4%BB%B6/">用mu4e管理邮件</a>
</h1>
<div class="post-meta">
<time datetime="2017-02-26" class="post-time">
2017-02-26
</time>
<div class="post-category">
<a href="https://lengyueyang.github.io/categories/spacemacs/"> Spacemacs </a>
<a href="https://lengyueyang.github.io/categories/%E5%B7%A5%E5%85%B7%E9%93%BE/"> 工具链 </a>
</div>
<span class="more-meta"> 约 1452 字 </span>
<span class="more-meta"> 预计阅读 3 分钟 </span>
<span class="more-meta"> <a href="https://lengyueyang.github.io/post/tools/spacemacs/%E7%94%A8mu4e%E7%AE%A1%E7%90%86%E9%82%AE%E4%BB%B6/#disqus_thread">评论</a> </span>
<span id="/post/tools/spacemacs/%E7%94%A8mu4e%E7%AE%A1%E7%90%86%E9%82%AE%E4%BB%B6/" class="leancloud_visitors" data-flag-title="用mu4e管理邮件">
<span class="post-meta-item-text"> | 阅读 </span>
<span class="leancloud-visitors-count"></span>
</span>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h2 id="概述">概述</h2>
<p>用 offlineimap 收取邮件,用 mu4e 在 emacs 中管理邮件,本教程配置多账户。</p>
</div>
<div class="read-more">
<a href="/post/tools/spacemacs/%E7%94%A8mu4e%E7%AE%A1%E7%90%86%E9%82%AE%E4%BB%B6/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/tools/org_mode/%E4%BD%BF%E7%94%A8org-mode%E5%81%9A%E6%97%B6%E9%97%B4%E7%AE%A1%E7%90%86/">使用Org-mode做时间管理</a>
</h1>
<div class="post-meta">
<time datetime="2016-02-28" class="post-time">
2016-02-28
</time>
<div class="post-category">
<a href="https://lengyueyang.github.io/categories/org-mode/"> Org-mode </a>
<a href="https://lengyueyang.github.io/categories/%E5%B7%A5%E5%85%B7%E9%93%BE/"> 工具链 </a>
</div>
<span class="more-meta"> 约 933 字 </span>
<span class="more-meta"> 预计阅读 2 分钟 </span>
<span class="more-meta"> <a href="https://lengyueyang.github.io/post/tools/org_mode/%E4%BD%BF%E7%94%A8org-mode%E5%81%9A%E6%97%B6%E9%97%B4%E7%AE%A1%E7%90%86/#disqus_thread">评论</a> </span>
<span id="/post/tools/org_mode/%E4%BD%BF%E7%94%A8org-mode%E5%81%9A%E6%97%B6%E9%97%B4%E7%AE%A1%E7%90%86/" class="leancloud_visitors" data-flag-title="使用Org-mode做时间管理">
<span class="post-meta-item-text"> | 阅读 </span>
<span class="leancloud-visitors-count"></span>
</span>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h2 id="写在前面">写在前面</h2>
<ul>
<li>最近准备学习 R 和 Python 语言,比较了很多编辑器,最终选择了 Emacs,看到知乎上很多大神推荐 Spacemacs,准备用 Spacemacs 编写程序, 同时建立博客,记录学习过程。</li>
<li>首先接触了 Org-mode,用 org-mode 做时间管理,本文简述我用 org-mode 做时间管理的流程以及配置。</li>
<li>在用 org-mode 之前,应该有一些 Spacemacs 及 Org-mode 的使用经验(参见<a href="https://github.com/syl20bnr/spacemacs/blob/master/layers/org/README.org#element-insertion">pacemacs Keybinding</a>和<a href="http://www.gnu.org/software/emacs/manual/html%5Fmono/org.html#Outlines">Org Mode Manual</a>)。</li>
</ul>
</div>
<div class="read-more">
<a href="/post/tools/org_mode/%E4%BD%BF%E7%94%A8org-mode%E5%81%9A%E6%97%B6%E9%97%B4%E7%AE%A1%E7%90%86/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/tools/org_mode/%E5%8D%9A%E5%AE%A2%E8%BF%81%E7%A7%BB%E6%9D%82%E8%AE%B0-%E4%BB%8E-hexo-%E5%88%B0-nikola/">博客迁移杂记-从 Hexo 到 Nikola</a>
</h1>
<div class="post-meta">
<time datetime="2018-01-07" class="post-time">
2018-01-07
</time>
<div class="post-category">
<a href="https://lengyueyang.github.io/categories/org-mode/"> Org-mode </a>
<a href="https://lengyueyang.github.io/categories/%E5%B7%A5%E5%85%B7%E9%93%BE/"> 工具链 </a>
</div>
<span class="more-meta"> 约 3699 字 </span>
<span class="more-meta"> 预计阅读 8 分钟 </span>
<span class="more-meta"> <a href="https://lengyueyang.github.io/post/tools/org_mode/%E5%8D%9A%E5%AE%A2%E8%BF%81%E7%A7%BB%E6%9D%82%E8%AE%B0-%E4%BB%8E-hexo-%E5%88%B0-nikola/#disqus_thread">评论</a> </span>
<span id="/post/tools/org_mode/%E5%8D%9A%E5%AE%A2%E8%BF%81%E7%A7%BB%E6%9D%82%E8%AE%B0-%E4%BB%8E-hexo-%E5%88%B0-nikola/" class="leancloud_visitors" data-flag-title="博客迁移杂记-从 Hexo 到 Nikola">
<span class="post-meta-item-text"> | 阅读 </span>
<span class="leancloud-visitors-count"></span>
</span>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h2 id="迁移原因">迁移原因</h2>
<p>16 年年初,开始搭建自己的个人博客,一不小心入了 <code>spacemacs</code> 的坑,一直用 <code>Org-mode</code> 写作、记笔记等,因此博客必须支持 <code>Org-mode</code> ,最开始的解决方案是 Hexo,用 <code>hexo-renderer-org</code> 将 Org-mde 格式转化,使用 Next 主题,确实比较好看,当时配置博客站点花了很长时间,在使用过程中,总是会有 hexo 插件更新问题,导致博客不能发布等,因此,最近一个月寻找 hexo 的替代者。</p>
<p>Nikola 是用 Python 写的,恰好以后要学 Python,同时 Nikola 通过 Org-mode 插件支持 Org-mode,于是选择 Nikola 作为博客框架,目前一切还好,就是主题比较难看。博客迁移过程用,参考<sup class="footnote-ref" id="fnref:fn-1"><a href="#fn:fn-1">1</a></sup><sup>, </sup><sup class="footnote-ref" id="fnref:fn-2"><a href="#fn:fn-2">2</a></sup><sup>, </sup><sup class="footnote-ref" id="fnref:fn-3"><a href="#fn:fn-3">3</a></sup><sup>, </sup><sup class="footnote-ref" id="fnref:fn-4"><a href="#fn:fn-4">4</a></sup></p>
</div>
<div class="read-more">
<a href="/post/tools/org_mode/%E5%8D%9A%E5%AE%A2%E8%BF%81%E7%A7%BB%E6%9D%82%E8%AE%B0-%E4%BB%8E-hexo-%E5%88%B0-nikola/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/data_science/math/%E9%AB%98%E7%AD%89%E4%BB%A3%E6%95%B0-%E8%A1%8C%E5%88%97%E5%BC%8F/">高等代数-行列式</a>
</h1>
<div class="post-meta">
<time datetime="2017-09-05" class="post-time">
2017-09-05
</time>
<div class="post-category">
<a href="https://lengyueyang.github.io/categories/%E6%95%B0%E5%AD%A6%E5%9F%BA%E7%A1%80/"> 数学基础 </a>
<a href="https://lengyueyang.github.io/categories/%E5%8C%BB%E5%AD%A6%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6/"> 医学数据科学 </a>
</div>
<span class="more-meta"> 约 2783 字 </span>
<span class="more-meta"> 预计阅读 6 分钟 </span>
<span class="more-meta"> <a href="https://lengyueyang.github.io/post/data_science/math/%E9%AB%98%E7%AD%89%E4%BB%A3%E6%95%B0-%E8%A1%8C%E5%88%97%E5%BC%8F/#disqus_thread">评论</a> </span>
<span id="/post/data_science/math/%E9%AB%98%E7%AD%89%E4%BB%A3%E6%95%B0-%E8%A1%8C%E5%88%97%E5%BC%8F/" class="leancloud_visitors" data-flag-title="高等代数-行列式">
<span class="post-meta-item-text"> | 阅读 </span>
<span class="leancloud-visitors-count"></span>
</span>
</div>
</header>
<div class="post-content">
<div class="post-summary">
n 元排列 n 个不同正整数的一个全排列称为 n 元排列. 在 n 元排列 \(a_1, a_2, ⋯, a_n\) 中, 任取一对数 \(a_i,a_j(i < j)\), 如果 \(a_i < a_j\), 那么这一对数构成一个 顺序, 否则, 这对数构成
</div>
<div class="read-more">
<a href="/post/data_science/math/%E9%AB%98%E7%AD%89%E4%BB%A3%E6%95%B0-%E8%A1%8C%E5%88%97%E5%BC%8F/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/tools/org_mode/%E4%BD%BF%E7%94%A8org-mode%E5%81%9A%E5%B9%BB%E7%81%AF%E7%89%87/">使用Org-mode做幻灯片</a>
</h1>
<div class="post-meta">
<time datetime="2016-03-04" class="post-time">
2016-03-04
</time>
<div class="post-category">