-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathR_Cheat-Sheet__Edit-with-Excel.mht
8985 lines (8904 loc) · 405 KB
/
R_Cheat-Sheet__Edit-with-Excel.mht
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
MIME-Version: 1.0
X-Document-Type: Workbook
Content-Type: multipart/related; boundary="----=_NextPart_01D1C189.967E3970"
Bei diesem Dokument handelt es sich um eine Webseite in einer Datei, die auch als Webarchivdatei bezeichnet wird. Wenn Sie diese Nachricht erhalten, unterstützt Ihr Browser oder Editor keine Webarchivdateien. Laden Sie einen Browser herunter, der Webarchivdateien unterstützt, wie zum Beispiel Windows® Internet Explorer®.
------=_NextPart_01D1C189.967E3970
Content-Location: file:///C:/5E8D990C/R_Cheat-Sheet__Edit-with-Excel.htm
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html; charset="us-ascii"
<html xmlns:v=3D"urn:schemas-microsoft-com:vml"
xmlns:o=3D"urn:schemas-microsoft-com:office:office"
xmlns:x=3D"urn:schemas-microsoft-com:office:excel"
xmlns:dt=3D"uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns=3D"http://www.w3.org/TR/REC-html40">
<head>
<meta name=3D"Excel Workbook Frameset">
<meta http-equiv=3DContent-Type content=3D"text/html; charset=3Dus-ascii">
<meta name=3DProgId content=3DExcel.Sheet>
<meta name=3DGenerator content=3D"Microsoft Excel 15">
<link rel=3DFile-List href=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/fileli=
st.xml">
<![if !supportTabStrip]>
<link id=3D"shLink" href=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet001=
.htm">
<link id=3D"shLink" href=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet002=
.htm">
<link id=3D"shLink" href=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet003=
.htm">
<link id=3D"shLink" href=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet004=
.htm">
<link id=3D"shLink">
<script language=3D"JavaScript">
<!--
var c_lTabs=3D4;
var c_rgszSh=3Dnew Array(c_lTabs);
c_rgszSh[0] =3D "Bibliography";
c_rgszSh[1] =3D "1_R_Functions";
c_rgszSh[2] =3D "2_Watch_out";
c_rgszSh[3] =3D "3_Learnings";
var c_rgszClr=3Dnew Array(8);
c_rgszClr[0]=3D"window";
c_rgszClr[1]=3D"buttonface";
c_rgszClr[2]=3D"windowframe";
c_rgszClr[3]=3D"windowtext";
c_rgszClr[4]=3D"threedlightshadow";
c_rgszClr[5]=3D"threedhighlight";
c_rgszClr[6]=3D"threeddarkshadow";
c_rgszClr[7]=3D"threedshadow";
var g_iShCur;
var g_rglTabX=3Dnew Array(c_lTabs);
function fnGetIEVer()
{
var ua=3Dwindow.navigator.userAgent
var msie=3Dua.indexOf("MSIE")
if (msie>0 && window.navigator.platform=3D=3D"Win32")
return parseInt(ua.substring(msie+5,ua.indexOf(".", msie)));
else
return 0;
}
function fnBuildFrameset()
{
var szHTML=3D"<frameset rows=3D\"*,18\" border=3D0 width=3D0 frameborder=
=3Dno framespacing=3D0>"+
"<frame src=3D\""+document.all.item("shLink")[3].href+"\" name=3D\"frShee=
t\" noresize>"+
"<frameset cols=3D\"54,*\" border=3D0 width=3D0 frameborder=3Dno framespa=
cing=3D0>"+
"<frame src=3D\"\" name=3D\"frScroll\" marginwidth=3D0 marginheight=3D0 s=
crolling=3Dno>"+
"<frame src=3D\"\" name=3D\"frTabs\" marginwidth=3D0 marginheight=3D0 scr=
olling=3Dno>"+
"</frameset></frameset><plaintext>";
with (document) {
open("text/html","replace");
write(szHTML);
close();
}
fnBuildTabStrip();
}
function fnBuildTabStrip()
{
var szHTML=3D
"<html><head><style>.clScroll {font:8pt Courier New;color:"+c_rgszClr[6]+=
";cursor:default;line-height:10pt;}"+
".clScroll2 {font:10pt Arial;color:"+c_rgszClr[6]+";cursor:default;line-h=
eight:11pt;}</style></head>"+
"<body onclick=3D\"event.returnValue=3Dfalse;\" ondragstart=3D\"event.ret=
urnValue=3Dfalse;\" onselectstart=3D\"event.returnValue=3Dfalse;\" bgcolor=
=3D"+c_rgszClr[4]+" topmargin=3D0 leftmargin=3D0><table cellpadding=3D0 cel=
lspacing=3D0 width=3D100%>"+
"<tr><td colspan=3D6 height=3D1 bgcolor=3D"+c_rgszClr[2]+"></td></tr>"+
"<tr><td style=3D\"font:1pt\"> <td>"+
"<td valign=3Dtop id=3DtdScroll class=3D\"clScroll\" onclick=3D\"parent.f=
nFastScrollTabs(0);\" onmouseover=3D\"parent.fnMouseOverScroll(0);\" onmous=
eout=3D\"parent.fnMouseOutScroll(0);\"><a>«</a></td>"+
"<td valign=3Dtop id=3DtdScroll class=3D\"clScroll2\" onclick=3D\"parent.=
fnScrollTabs(0);\" ondblclick=3D\"parent.fnScrollTabs(0);\" onmouseover=3D\=
"parent.fnMouseOverScroll(1);\" onmouseout=3D\"parent.fnMouseOutScroll(1);\=
"><a><</a></td>"+
"<td valign=3Dtop id=3DtdScroll class=3D\"clScroll2\" onclick=3D\"parent.=
fnScrollTabs(1);\" ondblclick=3D\"parent.fnScrollTabs(1);\" onmouseover=3D\=
"parent.fnMouseOverScroll(2);\" onmouseout=3D\"parent.fnMouseOutScroll(2);\=
"><a>></a></td>"+
"<td valign=3Dtop id=3DtdScroll class=3D\"clScroll\" onclick=3D\"parent.f=
nFastScrollTabs(1);\" onmouseover=3D\"parent.fnMouseOverScroll(3);\" onmous=
eout=3D\"parent.fnMouseOutScroll(3);\"><a>»</a></td>"+
"<td style=3D\"font:1pt\"> <td></tr></table></body></html>";
with (frames['frScroll'].document) {
open("text/html","replace");
write(szHTML);
close();
}
szHTML =3D
"<html><head>"+
"<style>A:link,A:visited,A:active {text-decoration:none;"+"color:"+c_rgsz=
Clr[3]+";}"+
".clTab {cursor:hand;background:"+c_rgszClr[1]+";font:9pt Arial;padding-l=
eft:3px;padding-right:3px;text-align:center;}"+
".clBorder {background:"+c_rgszClr[2]+";font:1pt;}"+
"</style></head><body onload=3D\"parent.fnInit();\" onselectstart=3D\"eve=
nt.returnValue=3Dfalse;\" ondragstart=3D\"event.returnValue=3Dfalse;\" bgco=
lor=3D"+c_rgszClr[4]+
" topmargin=3D0 leftmargin=3D0><table id=3DtbTabs cellpadding=3D0 cellspa=
cing=3D0>";
var iCellCount=3D(c_lTabs+1)*2;
var i;
for (i=3D0;i<iCellCount;i+=3D2)
szHTML+=3D"<col width=3D1><col>";
var iRow;
for (iRow=3D0;iRow<6;iRow++) {
szHTML+=3D"<tr>";
if (iRow=3D=3D5)
szHTML+=3D"<td colspan=3D"+iCellCount+"></td>";
else {
if (iRow=3D=3D0) {
for(i=3D0;i<iCellCount;i++)
szHTML+=3D"<td height=3D1 class=3D\"clBorder\"></td>";
} else if (iRow=3D=3D1) {
for(i=3D0;i<c_lTabs;i++) {
szHTML+=3D"<td height=3D1 nowrap class=3D\"clBorder\"> </td>";
szHTML+=3D
"<td id=3DtdTab height=3D1 nowrap class=3D\"clTab\" onmouseover=3D\"p=
arent.fnMouseOverTab("+i+");\" onmouseout=3D\"parent.fnMouseOutTab("+i+");\=
">"+
"<a href=3D\""+document.all.item("shLink")[i].href+"\" target=3D\"frS=
heet\" id=3DaTab> "+c_rgszSh[i]+" </a></td>";
}
szHTML+=3D"<td id=3DtdTab height=3D1 nowrap class=3D\"clBorder\"><a id=
=3DaTab> </a></td><td width=3D100%></td>";
} else if (iRow=3D=3D2) {
for (i=3D0;i<c_lTabs;i++)
szHTML+=3D"<td height=3D1></td><td height=3D1 class=3D\"clBorder\"></t=
d>";
szHTML+=3D"<td height=3D1></td><td height=3D1></td>";
} else if (iRow=3D=3D3) {
for (i=3D0;i<iCellCount;i++)
szHTML+=3D"<td height=3D1></td>";
} else if (iRow=3D=3D4) {
for (i=3D0;i<c_lTabs;i++)
szHTML+=3D"<td height=3D1 width=3D1></td><td height=3D1></td>";
szHTML+=3D"<td height=3D1 width=3D1></td><td></td>";
}
}
szHTML+=3D"</tr>";
}
szHTML+=3D"</table></body></html>";
with (frames['frTabs'].document) {
open("text/html","replace");
charset=3Ddocument.charset;
write(szHTML);
close();
}
}
function fnInit()
{
g_rglTabX[0]=3D0;
var i;
for (i=3D1;i<=3Dc_lTabs;i++)
with (frames['frTabs'].document.all.tbTabs.rows[1].cells[fnTabToCol(i-1)])
g_rglTabX[i]=3DoffsetLeft+offsetWidth-6;
}
function fnTabToCol(iTab)
{
return 2*iTab+1;
}
function fnNextTab(fDir)
{
var iNextTab=3D-1;
var i;
with (frames['frTabs'].document.body) {
if (fDir=3D=3D0) {
if (scrollLeft>0) {
for (i=3D0;i<c_lTabs&&g_rglTabX[i]<scrollLeft;i++);
if (i<c_lTabs)
iNextTab=3Di-1;
}
} else {
if (g_rglTabX[c_lTabs]+6>offsetWidth+scrollLeft) {
for (i=3D0;i<c_lTabs&&g_rglTabX[i]<=3DscrollLeft;i++);
if (i<c_lTabs)
iNextTab=3Di;
}
}
}
return iNextTab;
}
function fnScrollTabs(fDir)
{
var iNextTab=3DfnNextTab(fDir);
if (iNextTab>=3D0) {
frames['frTabs'].scroll(g_rglTabX[iNextTab],0);
return true;
} else
return false;
}
function fnFastScrollTabs(fDir)
{
if (c_lTabs>16)
frames['frTabs'].scroll(g_rglTabX[fDir?c_lTabs-1:0],0);
else
if (fnScrollTabs(fDir)>0) window.setTimeout("fnFastScrollTabs("+fDir+");"=
,5);
}
function fnSetTabProps(iTab,fActive)
{
var iCol=3DfnTabToCol(iTab);
var i;
if (iTab>=3D0) {
with (frames['frTabs'].document.all) {
with (tbTabs) {
for (i=3D0;i<=3D4;i++) {
with (rows[i]) {
if (i=3D=3D0)
cells[iCol].style.background=3Dc_rgszClr[fActive?0:2];
else if (i>0 && i<4) {
if (fActive) {
cells[iCol-1].style.background=3Dc_rgszClr[2];
cells[iCol].style.background=3Dc_rgszClr[0];
cells[iCol+1].style.background=3Dc_rgszClr[2];
} else {
if (i=3D=3D1) {
cells[iCol-1].style.background=3Dc_rgszClr[2];
cells[iCol].style.background=3Dc_rgszClr[1];
cells[iCol+1].style.background=3Dc_rgszClr[2];
} else {
cells[iCol-1].style.background=3Dc_rgszClr[4];
cells[iCol].style.background=3Dc_rgszClr[(i=3D=3D2)?2:4];
cells[iCol+1].style.background=3Dc_rgszClr[4];
}
}
} else
cells[iCol].style.background=3Dc_rgszClr[fActive?2:4];
}
}
}
with (aTab[iTab].style) {
cursor=3D(fActive?"default":"hand");
color=3Dc_rgszClr[3];
}
}
}
}
function fnMouseOverScroll(iCtl)
{
frames['frScroll'].document.all.tdScroll[iCtl].style.color=3Dc_rgszClr[7];
}
function fnMouseOutScroll(iCtl)
{
frames['frScroll'].document.all.tdScroll[iCtl].style.color=3Dc_rgszClr[6];
}
function fnMouseOverTab(iTab)
{
if (iTab!=3Dg_iShCur) {
var iCol=3DfnTabToCol(iTab);
with (frames['frTabs'].document.all) {
tdTab[iTab].style.background=3Dc_rgszClr[5];
}
}
}
function fnMouseOutTab(iTab)
{
if (iTab>=3D0) {
var elFrom=3Dframes['frTabs'].event.srcElement;
var elTo=3Dframes['frTabs'].event.toElement;
if ((!elTo) ||
(elFrom.tagName=3D=3DelTo.tagName) ||
(elTo.tagName=3D=3D"A" && elTo.parentElement!=3DelFrom) ||
(elFrom.tagName=3D=3D"A" && elFrom.parentElement!=3DelTo)) {
if (iTab!=3Dg_iShCur) {
with (frames['frTabs'].document.all) {
tdTab[iTab].style.background=3Dc_rgszClr[1];
}
}
}
}
}
function fnSetActiveSheet(iSh)
{
if (iSh!=3Dg_iShCur) {
fnSetTabProps(g_iShCur,false);
fnSetTabProps(iSh,true);
g_iShCur=3DiSh;
}
}
window.g_iIEVer=3DfnGetIEVer();
if (window.g_iIEVer>=3D4)
fnBuildFrameset();
//-->
</script>
<![endif]><!--[if gte mso 9]><xml>
<x:ExcelWorkbook>
<x:ExcelWorksheets>
<x:ExcelWorksheet>
<x:Name>Bibliography</x:Name>
<x:WorksheetSource
HRef=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet001.htm"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>1_R_Functions</x:Name>
<x:WorksheetSource
HRef=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet002.htm"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>2_Watch_out</x:Name>
<x:WorksheetSource
HRef=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet003.htm"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>3_Learnings</x:Name>
<x:WorksheetSource
HRef=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet004.htm"/>
</x:ExcelWorksheet>
</x:ExcelWorksheets>
<x:Stylesheet HRef=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/stylesheet.c=
ss"/>
<x:WindowHeight>12135</x:WindowHeight>
<x:WindowWidth>28800</x:WindowWidth>
<x:WindowTopX>0</x:WindowTopX>
<x:WindowTopY>0</x:WindowTopY>
<x:ActiveSheet>3</x:ActiveSheet>
<x:ProtectStructure>False</x:ProtectStructure>
<x:ProtectWindows>False</x:ProtectWindows>
</x:ExcelWorkbook>
</xml><![endif]-->
</head>
<frameset rows=3D"*,39" border=3D0 width=3D0 frameborder=3Dno framespacing=
=3D0>
<frame src=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet004.htm" name=3D=
"frSheet">
<frame src=3D"R_Cheat-Sheet__Edit-with-Excel-Dateien/tabstrip.htm" name=3D=
"frTabs" marginwidth=3D0 marginheight=3D0>
<noframes>
<body>
<p>Diese Seite verwendet Frames. Frames werden von Ihrem Browser aber ni=
cht unterstützt.</p>
</body>
</noframes>
</frameset>
</html>
------=_NextPart_01D1C189.967E3970
Content-Location: file:///C:/5E8D990C/R_Cheat-Sheet__Edit-with-Excel-Dateien/stylesheet.css
Content-Transfer-Encoding: quoted-printable
Content-Type: text/css; charset="us-ascii"
tr
{mso-height-source:auto;}
col
{mso-width-source:auto;}
br
{mso-data-placement:same-cell;}
.style62
{color:#0563C1;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:underline;
text-underline-style:single;
font-family:Arial, sans-serif;
mso-font-charset:0;
mso-style-name:Link;
mso-style-id:8;}
a:link
{color:#0563C1;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:underline;
text-underline-style:single;
font-family:Arial, sans-serif;
mso-font-charset:0;}
a:visited
{color:#954F72;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:underline;
text-underline-style:single;
font-family:Arial, sans-serif;
mso-font-charset:0;}
.style0
{mso-number-format:General;
text-align:general;
vertical-align:bottom;
white-space:nowrap;
mso-rotate:0;
mso-background-source:auto;
mso-pattern:auto;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Arial, sans-serif;
mso-font-charset:0;
border:none;
mso-protection:locked visible;
mso-style-name:Standard;
mso-style-id:0;}
td
{mso-style-parent:style0;
padding-top:1px;
padding-right:1px;
padding-left:1px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Arial, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
border:none;
mso-background-source:auto;
mso-pattern:auto;
mso-protection:locked visible;
white-space:nowrap;
mso-rotate:0;}
.xl65
{mso-style-parent:style0;
color:black;}
.xl66
{mso-style-parent:style0;
color:black;
font-weight:700;}
.xl67
{mso-style-parent:style0;
color:black;
mso-number-format:"Short Date";
text-align:left;}
.xl68
{mso-style-parent:style0;
vertical-align:top;
white-space:normal;}
.xl69
{mso-style-parent:style0;
text-align:center;
vertical-align:top;
white-space:normal;}
.xl70
{mso-style-parent:style0;
text-align:left;
vertical-align:top;
white-space:normal;}
.xl71
{mso-style-parent:style0;
color:black;
font-weight:700;
text-align:center;
vertical-align:top;
background:#D9D9D9;
mso-pattern:black none;
white-space:normal;}
.xl72
{mso-style-parent:style0;
color:black;
font-weight:700;
text-align:center;
vertical-align:top;
background:#D9D9D9;
mso-pattern:black none;}
.xl73
{mso-style-parent:style0;
color:black;
text-align:center;
vertical-align:top;
white-space:normal;}
.xl74
{mso-style-parent:style0;
color:black;
vertical-align:top;
white-space:normal;}
.xl75
{mso-style-parent:style0;
color:black;
text-align:left;
vertical-align:top;
white-space:normal;}
.xl76
{mso-style-parent:style0;
color:black;
text-align:left;
vertical-align:top;}
.xl77
{mso-style-parent:style0;
color:black;
vertical-align:top;}
.xl78
{mso-style-parent:style62;
color:#0563C1;
text-decoration:underline;
text-underline-style:single;
text-align:left;
vertical-align:top;}
.xl79
{mso-style-parent:style0;
color:black;
font-weight:700;
vertical-align:top;
background:#D9D9D9;
mso-pattern:black none;
white-space:normal;}
.xl80
{mso-style-parent:style0;
mso-number-format:"\@";
vertical-align:top;
white-space:normal;}
.xl81
{mso-style-parent:style0;
color:windowtext;
font-weight:700;
vertical-align:top;
background:#D9D9D9;
mso-pattern:black none;
white-space:normal;}
.xl82
{mso-style-parent:style0;
color:windowtext;
font-weight:700;
mso-number-format:"\@";
vertical-align:top;
background:#D9D9D9;
mso-pattern:black none;
white-space:normal;}
.xl83
{mso-style-parent:style0;
color:windowtext;
font-weight:700;
mso-number-format:"\@";
text-align:center;
vertical-align:top;
background:#D9D9D9;
mso-pattern:black none;
white-space:normal;}
.xl84
{mso-style-parent:style0;
color:black;
mso-number-format:"\@";
vertical-align:top;
white-space:normal;}
.xl85
{mso-style-parent:style0;
color:windowtext;
vertical-align:top;
background:#D9D9D9;
mso-pattern:black none;
white-space:normal;}
.xl86
{mso-style-parent:style0;
color:windowtext;
mso-number-format:"\@";
vertical-align:top;
background:#D9D9D9;
mso-pattern:black none;
white-space:normal;}
.xl87
{mso-style-parent:style62;
color:#0563C1;
text-decoration:underline;
text-underline-style:single;
mso-number-format:"\@";
vertical-align:top;
white-space:normal;}
.xl88
{mso-style-parent:style62;
color:#0563C1;
text-decoration:underline;
text-underline-style:single;
vertical-align:top;
white-space:normal;}
.xl89
{mso-style-parent:style0;
color:red;
mso-number-format:"\@";
vertical-align:top;
white-space:normal;}
------=_NextPart_01D1C189.967E3970
Content-Location: file:///C:/5E8D990C/R_Cheat-Sheet__Edit-with-Excel-Dateien/tabstrip.htm
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html; charset="us-ascii"
<html>
<head>
<meta http-equiv=3DContent-Type content=3D"text/html; charset=3Dus-ascii">
<meta name=3DProgId content=3DExcel.Sheet>
<meta name=3DGenerator content=3D"Microsoft Excel 15">
<link id=3DMain-File rel=3DMain-File href=3D"../R_Cheat-Sheet__Edit-with-Ex=
cel.htm">
<![if IE]>
<base
href=3D"file:///C:\5E8D990C\R_Cheat-Sheet__Edit-with-Excel-Dateien\tabstrip=
.htm"
id=3D"webarch_temp_base_tag">
<![endif]>
<script language=3D"JavaScript">
<!--
if (window.name!=3D"frTabs")
window.location.replace(document.all.item("Main-File").href);
//-->
</script>
<style>
<!--
A {
text-decoration:none;
color:#000000;
font-size:9pt;
}
-->
</style>
</head>
<body topmargin=3D0 leftmargin=3D0 bgcolor=3D"#808080">
<table border=3D0 cellspacing=3D1>
<tr>
<td bgcolor=3D"#FFFFFF" nowrap><b><small><small> <a href=3D"sheet001.=
htm" target=3D"frSheet"><font face=3D"Arial" color=3D"#000000">Bibliography=
</font></a> </small></small></b></td>
<td bgcolor=3D"#FFFFFF" nowrap><b><small><small> <a href=3D"sheet002.=
htm" target=3D"frSheet"><font face=3D"Arial" color=3D"#000000">1_R_Function=
s</font></a> </small></small></b></td>
<td bgcolor=3D"#FFFFFF" nowrap><b><small><small> <a href=3D"sheet003.=
htm" target=3D"frSheet"><font face=3D"Arial" color=3D"#000000">2_Watch_out<=
/font></a> </small></small></b></td>
<td bgcolor=3D"#FFFFFF" nowrap><b><small><small> <a href=3D"sheet004.=
htm" target=3D"frSheet"><font face=3D"Arial" color=3D"#000000">3_Learnings<=
/font></a> </small></small></b></td>
</tr>
</table>
</body>
</html>
------=_NextPart_01D1C189.967E3970
Content-Location: file:///C:/5E8D990C/R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet001.htm
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html; charset="us-ascii"
<html xmlns:o=3D"urn:schemas-microsoft-com:office:office"
xmlns:x=3D"urn:schemas-microsoft-com:office:excel"
xmlns=3D"http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=3DContent-Type content=3D"text/html; charset=3Dus-ascii">
<meta name=3DProgId content=3DExcel.Sheet>
<meta name=3DGenerator content=3D"Microsoft Excel 15">
<link id=3DMain-File rel=3DMain-File href=3D"../R_Cheat-Sheet__Edit-with-Ex=
cel.htm">
<link rel=3DFile-List href=3Dfilelist.xml>
<![if IE]>
<base
href=3D"file:///C:\5E8D990C\R_Cheat-Sheet__Edit-with-Excel-Dateien\sheet001=
.htm"
id=3D"webarch_temp_base_tag">
<![endif]>
<link rel=3DStylesheet href=3Dstylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\,";
mso-displayed-thousand-separator:"\.";}
@page
{margin:.79in .7in .79in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
-->
</style>
<![if !supportTabStrip]><script language=3D"JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=3D4) {
if (parent.document.readyState=3D=3D"complete"
&& parent.frames['frTabs'].document.readyState=3D=3D"complete")
parent.fnSetActiveSheet(0);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!=3D"frSheet")
window.location.replace("../R_Cheat-Sheet__Edit-with-Excel.htm");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=3D"#0563C1" vlink=3D"#954F72">
<table border=3D0 cellpadding=3D0 cellspacing=3D0 width=3D426 style=3D'bord=
er-collapse:
collapse;table-layout:fixed;width:320pt'>
<col width=3D157 style=3D'mso-width-source:userset;mso-width-alt:5024;widt=
h:118pt'>
<col width=3D269 style=3D'mso-width-source:userset;mso-width-alt:8608;widt=
h:202pt'>
<tr height=3D19 style=3D'height:14.25pt'>
<td height=3D19 class=3Dxl65 width=3D157 style=3D'height:14.25pt;width:11=
8pt'></td>
<td class=3Dxl65 width=3D269 style=3D'width:202pt'></td>
</tr>
<tr height=3D20 style=3D'height:15.0pt'>
<td height=3D20 class=3Dxl66 style=3D'height:15.0pt'>Author</td>
<td class=3Dxl65>Georg Maubach</td>
</tr>
<tr height=3D20 style=3D'height:15.0pt'>
<td height=3D20 class=3Dxl66 style=3D'height:15.0pt'>Date</td>
<td class=3Dxl67>30.03.2016</td>
</tr>
<tr height=3D20 style=3D'height:15.0pt'>
<td height=3D20 class=3Dxl66 style=3D'height:15.0pt'>Update</td>
<td class=3Dxl67>08.06.2016</td>
</tr>
<tr height=3D20 style=3D'height:15.0pt'>
<td height=3D20 class=3Dxl66 style=3D'height:15.0pt'>License</td>
<td class=3Dxl65>CC-BY-NC-SA</td>
</tr>
<tr height=3D19 style=3D'height:14.25pt'>
<td height=3D19 class=3Dxl65 style=3D'height:14.25pt'></td>
<td class=3Dxl65>Comercial use can be explicitly granted.</td>
</tr>
<tr height=3D19 style=3D'height:14.25pt'>
<td height=3D19 class=3Dxl65 style=3D'height:14.25pt'></td>
<td class=3Dxl65>Ask the author.</td>
</tr>
<![if supportMisalignedColumns]>
<tr height=3D0 style=3D'display:none'>
<td width=3D157 style=3D'width:118pt'></td>
<td width=3D269 style=3D'width:202pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>
------=_NextPart_01D1C189.967E3970
Content-Location: file:///C:/5E8D990C/R_Cheat-Sheet__Edit-with-Excel-Dateien/sheet002.htm
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html; charset="us-ascii"
<html xmlns:o=3D"urn:schemas-microsoft-com:office:office"
xmlns:x=3D"urn:schemas-microsoft-com:office:excel"
xmlns=3D"http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=3DContent-Type content=3D"text/html; charset=3Dus-ascii">
<meta name=3DProgId content=3DExcel.Sheet>
<meta name=3DGenerator content=3D"Microsoft Excel 15">
<link id=3DMain-File rel=3DMain-File href=3D"../R_Cheat-Sheet__Edit-with-Ex=
cel.htm">
<link rel=3DFile-List href=3Dfilelist.xml>
<![if IE]>
<base
href=3D"file:///C:\5E8D990C\R_Cheat-Sheet__Edit-with-Excel-Dateien\sheet002=
.htm"
id=3D"webarch_temp_base_tag">
<![endif]>
<link rel=3DStylesheet href=3Dstylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\,";
mso-displayed-thousand-separator:"\.";}
@page
{margin:.79in .7in .79in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
-->
</style>
<![if !supportTabStrip]><script language=3D"JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=3D4) {
if (parent.document.readyState=3D=3D"complete"
&& parent.frames['frTabs'].document.readyState=3D=3D"complete")
parent.fnSetActiveSheet(1);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!=3D"frSheet")
window.location.replace("../R_Cheat-Sheet__Edit-with-Excel.htm");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=3D"#0563C1" vlink=3D"#954F72" class=3Dxl68>
<table border=3D0 cellpadding=3D0 cellspacing=3D0 width=3D4522 style=3D'bor=
der-collapse:
collapse;table-layout:fixed;width:3394pt'>
<col class=3Dxl68 width=3D138 style=3D'mso-width-source:userset;mso-width-=
alt:4416;
mso-outline-level:1;width:104pt'>
<col class=3Dxl68 width=3D128 style=3D'mso-width-source:userset;mso-width-=
alt:4096;
mso-outline-level:1;width:96pt'>
<col class=3Dxl68 width=3D99 style=3D'mso-width-source:userset;mso-width-a=
lt:3168;
mso-outline-level:1;width:74pt'>
<col class=3Dxl69 width=3D120 style=3D'mso-width-source:userset;mso-width-=
alt:3840;
mso-outline-level:1;width:90pt'>
<col class=3Dxl68 width=3D207 style=3D'mso-width-source:userset;mso-width-=
alt:6624;
width:155pt'>
<col class=3Dxl68 width=3D170 style=3D'mso-width-source:userset;mso-width-=
alt:5440;
width:128pt'>
<col class=3Dxl68 width=3D234 style=3D'mso-width-source:userset;mso-width-=
alt:7488;
width:176pt'>
<col class=3Dxl68 width=3D122 style=3D'mso-width-source:userset;mso-width-=
alt:3904;
width:92pt'>
<col class=3Dxl68 width=3D376 style=3D'mso-width-source:userset;mso-width-=
alt:12032;
width:282pt'>
<col class=3Dxl68 width=3D367 style=3D'mso-width-source:userset;mso-width-=
alt:11744;
width:275pt'>
<col class=3Dxl68 width=3D376 style=3D'mso-width-source:userset;mso-width-=
alt:12032;
width:282pt'>
<col class=3Dxl68 width=3D376 style=3D'mso-width-source:userset;mso-width-=
alt:12032;
mso-outline-level:1;width:282pt'>
<col class=3Dxl68 width=3D384 style=3D'mso-width-source:userset;mso-width-=
alt:12288;
mso-outline-level:1;width:288pt'>
<col class=3Dxl69 width=3D156 style=3D'mso-width-source:userset;mso-width-=
alt:4992;
width:117pt'>
<col class=3Dxl70 width=3D0 style=3D'display:none;mso-width-source:userset;
mso-width-alt:3936;mso-outline-level:1'>
<col class=3Dxl70 width=3D257 style=3D'mso-width-source:userset;mso-width-=
alt:8224;
mso-outline-level:1;width:193pt'>
<col class=3Dxl70 width=3D218 style=3D'mso-width-source:userset;mso-width-=
alt:6976;
mso-outline-level:1;width:164pt'>
<col class=3Dxl68 width=3D56 style=3D'mso-width-source:userset;mso-width-a=
lt:1792;
mso-outline-level:1;width:42pt'>
<col class=3Dxl70 width=3D418 style=3D'mso-width-source:userset;mso-width-=
alt:13376;
width:314pt'>
<col class=3Dxl68 width=3D80 span=3D4 style=3D'width:60pt'>
<tr class=3Dxl69 height=3D20 style=3D'height:15.0pt'>
<td height=3D20 class=3Dxl71 width=3D138 style=3D'height:15.0pt;width:104=
pt'><span
style=3D'mso-spacerun:yes'> </span></td>
<td class=3Dxl71 width=3D128 style=3D'width:96pt'>Theme</td>
<td class=3Dxl71 width=3D99 style=3D'width:74pt'>Package</td>
<td class=3Dxl71 width=3D120 style=3D'width:90pt'>Pre_loaded</td>
<td class=3Dxl71 width=3D207 style=3D'width:155pt'>Function</td>
<td class=3Dxl71 width=3D170 style=3D'width:128pt'>Input</td>
<td class=3Dxl71 width=3D234 style=3D'width:176pt'>Parameters_Defaults</t=
d>
<td class=3Dxl71 width=3D122 style=3D'width:92pt'>Output</td>
<td class=3Dxl71 width=3D376 style=3D'width:282pt'>Operation</td>
<td class=3Dxl71 width=3D367 style=3D'width:275pt'>Usage</td>
<td class=3Dxl71 width=3D376 style=3D'width:282pt'>Example</td>
<td class=3Dxl71 width=3D376 style=3D'width:282pt'>Advantages</td>
<td class=3Dxl71 width=3D384 style=3D'width:288pt'>Disadvantages</td>
<td class=3Dxl71 width=3D156 style=3D'width:117pt'>Recommendation</td>
<td class=3Dxl71 width=3D0>Documentation</td>
<td class=3Dxl72 width=3D257 style=3D'width:193pt'>Related</td>
<td class=3Dxl72 width=3D218 style=3D'width:164pt'>Documentation</td>
<td class=3Dxl71 width=3D56 style=3D'width:42pt'>Tags</td>
<td class=3Dxl72 width=3D418 style=3D'width:314pt'>Source</td>
<td class=3Dxl73 width=3D80 style=3D'width:60pt'></td>
<td class=3Dxl73 width=3D80 style=3D'width:60pt'></td>
<td class=3Dxl73 width=3D80 style=3D'width:60pt'></td>
<td class=3Dxl69 width=3D80 style=3D'width:60pt'></td>
</tr>
<tr height=3D152 style=3D'height:114.0pt'>
<td height=3D152 class=3Dxl74 width=3D138 style=3D'height:114.0pt;width:1=
04pt'>Analysis</td>
<td class=3Dxl74 width=3D128 style=3D'width:96pt'>Statistics</td>
<td class=3Dxl74 width=3D99 style=3D'width:74pt'>base</td>
<td class=3Dxl73 width=3D120 style=3D'width:90pt'>yes</td>
<td class=3Dxl74 width=3D207 style=3D'width:155pt'>cor()</td>
<td class=3Dxl74 width=3D170 style=3D'width:128pt'>x =3D numeric vector |=
matrix |
data.frame, y =3D numeric vector | matrix | data.frame of same dimensions=
as x,
na.rm =3D FALSE, use, method =3D "pearson" | "kendall"=
; |
"spearman"</td>
<td class=3Dxl74 width=3D234 style=3D'width:176pt'></td>
<td class=3Dxl74 width=3D122 style=3D'width:92pt'></td>
<td class=3Dxl74 width=3D376 style=3D'width:282pt'></td>
<td class=3Dxl74 width=3D367 style=3D'width:275pt'></td>
<td class=3Dxl74 width=3D376 style=3D'width:282pt'></td>
<td class=3Dxl74 width=3D376 style=3D'width:282pt'></td>
<td class=3Dxl74 width=3D384 style=3D'width:288pt'></td>
<td class=3Dxl73 width=3D156 style=3D'width:117pt'></td>
<td class=3Dxl75 width=3D0></td>
<td class=3Dxl76></td>
<td class=3Dxl76></td>
<td class=3Dxl74 width=3D56 style=3D'width:42pt'></td>
<td class=3Dxl76></td>
<td class=3Dxl74 width=3D80 style=3D'width:60pt'></td>
<td class=3Dxl74 width=3D80 style=3D'width:60pt'></td>
<td class=3Dxl74 width=3D80 style=3D'width:60pt'></td>
<td class=3Dxl68 width=3D80 style=3D'width:60pt'></td>
</tr>
<tr height=3D19 style=3D'height:14.25pt'>
<td height=3D19 class=3Dxl74 width=3D138 style=3D'height:14.25pt;width:10=
4pt'>Analysis</td>
<td class=3Dxl77>Statistics</td>
<td class=3Dxl74 width=3D99 style=3D'width:74pt'>base</td>
<td class=3Dxl73 width=3D120 style=3D'width:90pt'>yes</td>
<td class=3Dxl77>diff()</td>
<td class=3Dxl77>vector</td>
<td class=3Dxl77>range(x)</td>
<td class=3Dxl74 width=3D122 style=3D'width:92pt'>single value</td>
<td class=3Dxl74 width=3D376 style=3D'width:282pt'>Aggregate function for=
total
range of vector x</td>
<td class=3Dxl77></td>
<td class=3Dxl77></td>
<td class=3Dxl74 width=3D376 style=3D'width:282pt'></td>
<td class=3Dxl74 width=3D384 style=3D'width:288pt'></td>
<td class=3Dxl73 width=3D156 style=3D'width:117pt'>yes</td>
<td class=3Dxl75 width=3D0></td>
<td class=3Dxl76></td>
<td class=3Dxl76></td>
<td class=3Dxl74 width=3D56 style=3D'width:42pt'></td>