-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathEnvStat.aux
1159 lines (1159 loc) · 125 KB
/
EnvStat.aux
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
\relax
\providecommand\hyper@newdestlabel[2]{}
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
\global\let\oldcontentsline\contentsline
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
\global\let\oldnewlabel\newlabel
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
\AtEndDocument{\ifx\hyper@anchor\@undefined
\let\contentsline\oldcontentsline
\let\newlabel\oldnewlabel
\fi}
\fi}
\global\let\hyper@last\relax
\gdef\HyperFirstAtBeginDocument#1{#1}
\providecommand*\HyPL@Entry[1]{}
\bibstyle{apalike}
\HyPL@Entry{0<</S/D>>}
\newlabel{pengantar}{{}{9}{Pengantar}{chapter*.4}{}}
\@writefile{toc}{\contentsline {chapter}{Pengantar}{9}{chapter*.4}\protected@file@percent }
\newlabel{part-bahasa-pemrograman-r}{{}{13}{Bahasa Pemrograman R}{part*.5}{}}
\@writefile{toc}{\contentsline {part}{Bahasa Pemrograman R}{13}{part*.5}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {1}Mengenal Bahasa R}{13}{chapter.1}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{mengenal-bahasa-r}{{1}{13}{Mengenal Bahasa R}{chapter.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.1}Sejarah R}{13}{section.1.1}\protected@file@percent }
\newlabel{sejarah-r}{{1.1}{13}{Sejarah R}{section.1.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {1.1}{\ignorespaces Logo R.}}{14}{figure.1.1}\protected@file@percent }
\newlabel{fig:Logo}{{1.1}{14}{Logo R}{figure.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.2}Fitur dan Karakteristik R}{14}{section.1.2}\protected@file@percent }
\newlabel{fitur-dan-karakteristik-r}{{1.2}{14}{Fitur dan Karakteristik R}{section.1.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.3}Kelebihan dan Kekurangan R}{15}{section.1.3}\protected@file@percent }
\newlabel{kelebihan-dan-kekurangan-r}{{1.3}{15}{Kelebihan dan Kekurangan R}{section.1.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.4}RStudio}{16}{section.1.4}\protected@file@percent }
\newlabel{rstudio}{{1.4}{16}{RStudio}{section.1.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {1.2}{\ignorespaces Jendela R.}}{17}{figure.1.2}\protected@file@percent }
\newlabel{fig:jendela-R}{{1.2}{17}{Jendela R}{figure.1.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.5}Menginstall R dan RStudio}{17}{section.1.5}\protected@file@percent }
\newlabel{menginstall-r-dan-rstudio}{{1.5}{17}{Menginstall R dan RStudio}{section.1.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.6}Working Directory}{17}{section.1.6}\protected@file@percent }
\newlabel{working-directory}{{1.6}{17}{Working Directory}{section.1.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {1.3}{\ignorespaces Jendela RStudio.}}{18}{figure.1.3}\protected@file@percent }
\newlabel{fig:jendela-RStudio}{{1.3}{18}{Jendela RStudio}{figure.1.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.6.1}Mengubah Lokasi Working Directory}{18}{subsection.1.6.1}\protected@file@percent }
\newlabel{mengubah-lokasi-working-directory}{{1.6.1}{18}{Mengubah Lokasi Working Directory}{subsection.1.6.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {1.4}{\ignorespaces Mengubah working directory.}}{19}{figure.1.4}\protected@file@percent }
\newlabel{fig:working}{{1.4}{19}{Mengubah working directory}{figure.1.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.6.2}Mengubah Lokasi Working Directory Default}{19}{subsection.1.6.2}\protected@file@percent }
\newlabel{mengubah-lokasi-working-directory-default}{{1.6.2}{19}{Mengubah Lokasi Working Directory Default}{subsection.1.6.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.7}Fasilitas Help}{19}{section.1.7}\protected@file@percent }
\newlabel{fasilitas-help}{{1.7}{19}{Fasilitas Help}{section.1.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {1.5}{\ignorespaces Merubah working directory melalui Global options.}}{20}{figure.1.5}\protected@file@percent }
\newlabel{fig:default}{{1.5}{20}{Merubah working directory melalui Global options}{figure.1.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.7.1}Mencari Help dari Suatu Perintah Tertentu}{20}{subsection.1.7.1}\protected@file@percent }
\newlabel{mencari-help-dari-suatu-perintah-tertentu}{{1.7.1}{20}{Mencari Help dari Suatu Perintah Tertentu}{subsection.1.7.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {1.6}{\ignorespaces Jendela help dokumentasi fungsi mean().}}{21}{figure.1.6}\protected@file@percent }
\newlabel{fig:meandoc}{{1.6}{21}{Jendela help dokumentasi fungsi mean()}{figure.1.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.7.2}General Help}{22}{subsection.1.7.2}\protected@file@percent }
\newlabel{general-help}{{1.7.2}{22}{General Help}{subsection.1.7.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {1.7}{\ignorespaces Jendela general help dokumentasi fungsi mean().}}{23}{figure.1.7}\protected@file@percent }
\newlabel{fig:generalhelp}{{1.7}{23}{Jendela general help dokumentasi fungsi mean()}{figure.1.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.7.3}Fasilitas Help Lainnya}{23}{subsection.1.7.3}\protected@file@percent }
\newlabel{fasilitas-help-lainnya}{{1.7.3}{23}{Fasilitas Help Lainnya}{subsection.1.7.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {1.8}{\ignorespaces Jendela help search dokumentasi fungsi mean().}}{24}{figure.1.8}\protected@file@percent }
\newlabel{fig:helpsearch}{{1.8}{24}{Jendela help search dokumentasi fungsi mean()}{figure.1.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.8}Referensi}{24}{section.1.8}\protected@file@percent }
\newlabel{referensi}{{1.8}{24}{Referensi}{section.1.8}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {2}Dasar Pemrograman Menggunakan R}{27}{chapter.2}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{dasar-pemrograman-menggunakan-r}{{2}{27}{Dasar Pemrograman Menggunakan R}{chapter.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.1}Operator Aritmatika}{27}{section.2.1}\protected@file@percent }
\newlabel{operator-aritmatika}{{2.1}{27}{Operator Aritmatika}{section.2.1}{}}
\gdef \LT@i {\LT@entry
{1}{57.74791pt}\LT@entry
{1}{278.5477pt}}
\newlabel{tab:oparitmatika}{{2.1}{28}{Operator Aritmatika}{table.2.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.2}Fungsi Aritmetik}{29}{section.2.2}\protected@file@percent }
\newlabel{fungsi-aritmetik}{{2.2}{29}{Fungsi Aritmetik}{section.2.2}{}}
\gdef \LT@ii {\LT@entry
{1}{40.49002pt}\LT@entry
{3}{117.11002pt}}
\@writefile{toc}{\contentsline {section}{\numberline {2.3}Operator Relasi}{30}{section.2.3}\protected@file@percent }
\newlabel{operator-relasi}{{2.3}{30}{Operator Relasi}{section.2.3}{}}
\newlabel{tab:oprelasi}{{2.2}{30}{Operator Relasi}{table.2.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {2.2}{ Operator Relasi \texttt {R}.}}{30}{table.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {2.4}Operator Logika}{31}{section.2.4}\protected@file@percent }
\newlabel{operator-logika}{{2.4}{31}{Operator Logika}{section.2.4}{}}
\gdef \LT@iii {\LT@entry
{1}{40.49002pt}\LT@entry
{3}{159.57004pt}}
\newlabel{tab:oplogika}{{2.3}{32}{Operator Logika}{table.2.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {2.3}{ Operator logika \texttt {R}.}}{32}{table.2.3}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {2.5}Memasukkan Nilai Kedalam Variabel}{33}{section.2.5}\protected@file@percent }
\newlabel{memasukkan-nilai-kedalam-variabel}{{2.5}{33}{Memasukkan Nilai Kedalam Variabel}{section.2.5}{}}
\gdef \LT@iv {\LT@entry
{1}{47.39833pt}\LT@entry
{3}{77.55086pt}\LT@entry
{3}{213.00212pt}}
\@writefile{toc}{\contentsline {section}{\numberline {2.6}Tipe dan Struktur Data}{35}{section.2.6}\protected@file@percent }
\newlabel{tipe-dan-struktur-data}{{2.6}{35}{Tipe dan Struktur Data}{section.2.6}{}}
\newlabel{tab:tipedata}{{2.4}{35}{Tipe dan Struktur Data}{table.2.4}{}}
\@writefile{lot}{\contentsline {table}{\numberline {2.4}{ Tipe data \texttt {R}.}}{35}{table.2.4}\protected@file@percent }
\gdef \LT@v {\LT@entry
{1}{46.98001pt}\LT@entry
{3}{75.36002pt}\LT@entry
{1}{57.91002pt}}
\newlabel{tab:strukturdata}{{2.5}{39}{Tipe dan Struktur Data}{table.2.5}{}}
\@writefile{lot}{\contentsline {table}{\numberline {2.5}{ Struktur data \texttt {R}.}}{39}{table.2.5}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {2.7}Vektor}{39}{section.2.7}\protected@file@percent }
\newlabel{vektor}{{2.7}{39}{Vektor}{section.2.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.7.1}Membuat vektor}{39}{subsection.2.7.1}\protected@file@percent }
\newlabel{membuat-vektor}{{2.7.1}{39}{Membuat vektor}{subsection.2.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.7.2}Missing Values}{40}{subsection.2.7.2}\protected@file@percent }
\newlabel{missing-values}{{2.7.2}{40}{Missing Values}{subsection.2.7.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.7.3}Subset Pada Vektor}{41}{subsection.2.7.3}\protected@file@percent }
\newlabel{subset-pada-vektor}{{2.7.3}{41}{Subset Pada Vektor}{subsection.2.7.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.7.4}Operasi Matematis Menggunakan Vektor}{43}{subsection.2.7.4}\protected@file@percent }
\newlabel{operasi-matematis-menggunakan-vektor}{{2.7.4}{43}{Operasi Matematis Menggunakan Vektor}{subsection.2.7.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.8}Matriks}{44}{section.2.8}\protected@file@percent }
\newlabel{matriks}{{2.8}{44}{Matriks}{section.2.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.8.1}Membuat matriks}{44}{subsection.2.8.1}\protected@file@percent }
\newlabel{membuat-matriks}{{2.8.1}{44}{Membuat matriks}{subsection.2.8.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.8.2}Subset Pada Matriks}{47}{subsection.2.8.2}\protected@file@percent }
\newlabel{subset-pada-matriks}{{2.8.2}{47}{Subset Pada Matriks}{subsection.2.8.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.8.3}Perhitungan Menggunakan Matriks}{49}{subsection.2.8.3}\protected@file@percent }
\newlabel{perhitungan-menggunakan-matriks}{{2.8.3}{49}{Perhitungan Menggunakan Matriks}{subsection.2.8.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.9}Faktor}{51}{section.2.9}\protected@file@percent }
\newlabel{faktor}{{2.9}{51}{Faktor}{section.2.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.9.1}Membuat Variabel Faktor}{51}{subsection.2.9.1}\protected@file@percent }
\newlabel{membuat-variabel-faktor}{{2.9.1}{51}{Membuat Variabel Faktor}{subsection.2.9.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.9.2}Perhitungan Menggunakan Faktor}{52}{subsection.2.9.2}\protected@file@percent }
\newlabel{perhitungan-menggunakan-faktor}{{2.9.2}{52}{Perhitungan Menggunakan Faktor}{subsection.2.9.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.10}Data Frames}{54}{section.2.10}\protected@file@percent }
\newlabel{data-frames}{{2.10}{54}{Data Frames}{section.2.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.10.1}Membuat Data Frame}{54}{subsection.2.10.1}\protected@file@percent }
\newlabel{membuat-data-frame}{{2.10.1}{54}{Membuat Data Frame}{subsection.2.10.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.10.2}Subset Pada Data Frame}{55}{subsection.2.10.2}\protected@file@percent }
\newlabel{subset-pada-data-frame}{{2.10.2}{55}{Subset Pada Data Frame}{subsection.2.10.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.10.3}Memperluas Data Frame}{57}{subsection.2.10.3}\protected@file@percent }
\newlabel{memperluas-data-frame}{{2.10.3}{57}{Memperluas Data Frame}{subsection.2.10.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.10.4}Perhitungan Pada Data Frame}{58}{subsection.2.10.4}\protected@file@percent }
\newlabel{perhitungan-pada-data-frame}{{2.10.4}{58}{Perhitungan Pada Data Frame}{subsection.2.10.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.11}List}{58}{section.2.11}\protected@file@percent }
\newlabel{list}{{2.11}{58}{List}{section.2.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.11.1}Membuat List}{58}{subsection.2.11.1}\protected@file@percent }
\newlabel{membuat-list}{{2.11.1}{58}{Membuat List}{subsection.2.11.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.11.2}Subset List}{59}{subsection.2.11.2}\protected@file@percent }
\newlabel{subset-list}{{2.11.2}{59}{Subset List}{subsection.2.11.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.11.3}Memperluas List}{60}{subsection.2.11.3}\protected@file@percent }
\newlabel{memperluas-list}{{2.11.3}{60}{Memperluas List}{subsection.2.11.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces Diagram umum loop (sumber: Primartha, 2018).}}{61}{figure.2.1}\protected@file@percent }
\newlabel{fig:loop}{{2.1}{61}{Diagram umum loop (sumber: Primartha, 2018)}{figure.2.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.12}Loop}{61}{section.2.12}\protected@file@percent }
\newlabel{loop}{{2.12}{61}{Loop}{section.2.12}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.12.1}For Loop}{61}{subsection.2.12.1}\protected@file@percent }
\newlabel{for-loop}{{2.12.1}{61}{For Loop}{subsection.2.12.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.12.2}While Loop}{62}{subsection.2.12.2}\protected@file@percent }
\newlabel{while-loop}{{2.12.2}{62}{While Loop}{subsection.2.12.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.12.3}Repeat Loop}{63}{subsection.2.12.3}\protected@file@percent }
\newlabel{repeat-loop}{{2.12.3}{63}{Repeat Loop}{subsection.2.12.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.12.4}Break}{64}{subsection.2.12.4}\protected@file@percent }
\newlabel{break}{{2.12.4}{64}{Break}{subsection.2.12.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.13}Loop Menggunakan Apply Family Function}{65}{section.2.13}\protected@file@percent }
\newlabel{loop-menggunakan-apply-family-function}{{2.13}{65}{Loop Menggunakan Apply Family Function}{section.2.13}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.13.1}Apply}{66}{subsection.2.13.1}\protected@file@percent }
\newlabel{apply}{{2.13.1}{66}{Apply}{subsection.2.13.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.13.2}lapply}{67}{subsection.2.13.2}\protected@file@percent }
\newlabel{lapply}{{2.13.2}{67}{lapply}{subsection.2.13.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.13.3}sapply}{69}{subsection.2.13.3}\protected@file@percent }
\newlabel{sapply}{{2.13.3}{69}{sapply}{subsection.2.13.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.13.4}vapply}{72}{subsection.2.13.4}\protected@file@percent }
\newlabel{vapply}{{2.13.4}{72}{vapply}{subsection.2.13.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.13.5}tapply}{74}{subsection.2.13.5}\protected@file@percent }
\newlabel{tapply}{{2.13.5}{74}{tapply}{subsection.2.13.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.14}Loop Menggunakan map function pada Library \texttt {purrr}}{75}{section.2.14}\protected@file@percent }
\newlabel{loop-menggunakan-map-function-pada-library-purrr}{{2.14}{75}{\texorpdfstring {Loop Menggunakan map function pada Library \texttt {purrr}}{Loop Menggunakan map function pada Library purrr}}{section.2.14}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.15}Decision Making}{77}{section.2.15}\protected@file@percent }
\newlabel{decision-making}{{2.15}{77}{Decision Making}{section.2.15}{}}
\gdef \LT@vi {\LT@entry
{1}{57.74791pt}\LT@entry
{1}{278.5477pt}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.2}{\ignorespaces Diagram if statement (sumber: Primartha, 2018).}}{78}{figure.2.2}\protected@file@percent }
\newlabel{fig:ifstatement}{{2.2}{78}{Diagram if statement (sumber: Primartha, 2018)}{figure.2.2}{}}
\newlabel{tab:percabangan}{{2.6}{78}{Decision Making}{table.2.6}{}}
\@writefile{lot}{\contentsline {table}{\numberline {2.6}{ Daftar percabangan pada \texttt {R}.}}{78}{table.2.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.15.1}if statement}{78}{subsection.2.15.1}\protected@file@percent }
\newlabel{if-statement}{{2.15.1}{78}{if statement}{subsection.2.15.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.3}{\ignorespaces Diagram if else statement (sumber: Primartha, 2018).}}{79}{figure.2.3}\protected@file@percent }
\newlabel{fig:ifelse}{{2.3}{79}{Diagram if else statement (sumber: Primartha, 2018)}{figure.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.15.2}if else statement}{79}{subsection.2.15.2}\protected@file@percent }
\newlabel{if-else-statement}{{2.15.2}{79}{if else statement}{subsection.2.15.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.15.3}switch statement}{79}{subsection.2.15.3}\protected@file@percent }
\newlabel{switch-statement}{{2.15.3}{79}{switch statement}{subsection.2.15.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.4}{\ignorespaces Diagram switch statement (sumber: Primartha, 2018).}}{80}{figure.2.4}\protected@file@percent }
\newlabel{fig:switch}{{2.4}{80}{Diagram switch statement (sumber: Primartha, 2018)}{figure.2.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.16}Fungsi}{80}{section.2.16}\protected@file@percent }
\newlabel{fungsi}{{2.16}{80}{Fungsi}{section.2.16}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.17}Referensi}{82}{section.2.17}\protected@file@percent }
\newlabel{referensi-1}{{2.17}{82}{Referensi}{section.2.17}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {3}Manajemen Data R}{83}{chapter.3}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{manajemen-data-r}{{3}{83}{Manajemen Data R}{chapter.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.1}Tidyverse}{83}{section.3.1}\protected@file@percent }
\newlabel{tidyverse}{{3.1}{83}{Tidyverse}{section.3.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.2}Import File}{85}{section.3.2}\protected@file@percent }
\newlabel{import-file}{{3.2}{85}{Import File}{section.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.1}Import File Menggunakan Fungsi Bawaan R}{85}{subsection.3.2.1}\protected@file@percent }
\newlabel{import-file-menggunakan-fungsi-bawaan-r}{{3.2.1}{85}{Import File Menggunakan Fungsi Bawaan R}{subsection.3.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.2}Membaca File CSV dan TXT Menggunakan Library readr}{87}{subsection.3.2.2}\protected@file@percent }
\newlabel{membaca-file-csv-dan-txt-menggunakan-library-readr}{{3.2.2}{87}{Membaca File CSV dan TXT Menggunakan Library readr}{subsection.3.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.3}Import File Excel Pada R}{89}{subsection.3.2.3}\protected@file@percent }
\newlabel{import-file-excel-pada-r}{{3.2.3}{89}{Import File Excel Pada R}{subsection.3.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.4}Membaca File Dari Format Aplikasi Statistik}{91}{subsection.3.2.4}\protected@file@percent }
\newlabel{membaca-file-dari-format-aplikasi-statistik}{{3.2.4}{91}{Membaca File Dari Format Aplikasi Statistik}{subsection.3.2.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.3}Import Beberapa File Dalam Beberapa Baris Kode}{93}{section.3.3}\protected@file@percent }
\newlabel{import-beberapa-file-dalam-beberapa-baris-kode}{{3.3}{93}{Import Beberapa File Dalam Beberapa Baris Kode}{section.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.1}for loop}{94}{subsection.3.3.1}\protected@file@percent }
\newlabel{for-loop-1}{{3.3.1}{94}{for loop}{subsection.3.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.2}Apply Family Function}{101}{subsection.3.3.2}\protected@file@percent }
\newlabel{apply-family-function}{{3.3.2}{101}{Apply Family Function}{subsection.3.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.3}Map Family Function}{107}{subsection.3.3.3}\protected@file@percent }
\newlabel{map-family-function}{{3.3.3}{107}{Map Family Function}{subsection.3.3.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.4}Eksport File}{111}{section.3.4}\protected@file@percent }
\newlabel{eksport-file}{{3.4}{111}{Eksport File}{section.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4.1}Eksport Data Menjadi Format TXT dan CSV}{111}{subsection.3.4.1}\protected@file@percent }
\newlabel{eksport-data-menjadi-format-txt-dan-csv}{{3.4.1}{111}{Eksport Data Menjadi Format TXT dan CSV}{subsection.3.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4.2}Eksport Data Menjadi Format Excel}{113}{subsection.3.4.2}\protected@file@percent }
\newlabel{eksport-data-menjadi-format-excel}{{3.4.2}{113}{Eksport Data Menjadi Format Excel}{subsection.3.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4.3}Eksport File Dalam Format SAS, SPSS, dan STATA}{114}{subsection.3.4.3}\protected@file@percent }
\newlabel{eksport-file-dalam-format-sas-spss-dan-stata}{{3.4.3}{114}{Eksport File Dalam Format SAS, SPSS, dan STATA}{subsection.3.4.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.5}Tibble Data Format}{114}{section.3.5}\protected@file@percent }
\newlabel{tibble-data-format}{{3.5}{114}{Tibble Data Format}{section.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.1}Membuat Tibble}{115}{subsection.3.5.1}\protected@file@percent }
\newlabel{membuat-tibble}{{3.5.1}{115}{Membuat Tibble}{subsection.3.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.2}Tibble vs Data Frame}{118}{subsection.3.5.2}\protected@file@percent }
\newlabel{tibble-vs-data-frame}{{3.5.2}{118}{Tibble vs Data Frame}{subsection.3.5.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.6}Merapikan Data}{121}{section.3.6}\protected@file@percent }
\newlabel{merapikan-data}{{3.6}{121}{Merapikan Data}{section.3.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.1}{\ignorespaces Visualisasi 3 rule tidy data}}{124}{figure.3.1}\protected@file@percent }
\newlabel{fig:tidy}{{3.1}{124}{Visualisasi 3 rule tidy data}{figure.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.1}Gather}{125}{subsection.3.6.1}\protected@file@percent }
\newlabel{gather}{{3.6.1}{125}{Gather}{subsection.3.6.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.2}{\ignorespaces Visualisasi fungsi gather (Sumber: Rstudio,2017)}}{126}{figure.3.2}\protected@file@percent }
\newlabel{fig:gather}{{3.2}{126}{Visualisasi fungsi gather (Sumber: Rstudio,2017)}{figure.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.2}Spread}{128}{subsection.3.6.2}\protected@file@percent }
\newlabel{spread}{{3.6.2}{128}{Spread}{subsection.3.6.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.3}{\ignorespaces Visualisasi fungsi spread (Sumber: Rstudio,2017)}}{129}{figure.3.3}\protected@file@percent }
\newlabel{fig:spread}{{3.3}{129}{Visualisasi fungsi spread (Sumber: Rstudio,2017)}{figure.3.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.4}{\ignorespaces Visualisasi fungsi separate (Sumber: Rstudio,2017)}}{130}{figure.3.4}\protected@file@percent }
\newlabel{fig:separate}{{3.4}{130}{Visualisasi fungsi separate (Sumber: Rstudio,2017)}{figure.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.3}Separate}{130}{subsection.3.6.3}\protected@file@percent }
\newlabel{separate}{{3.6.3}{130}{Separate}{subsection.3.6.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.5}{\ignorespaces Visualisasi fungsi separate rows}}{131}{figure.3.5}\protected@file@percent }
\newlabel{fig:separaterows}{{3.5}{131}{Visualisasi fungsi separate rows}{figure.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.4}Unite}{133}{subsection.3.6.4}\protected@file@percent }
\newlabel{unite}{{3.6.4}{133}{Unite}{subsection.3.6.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.6}{\ignorespaces Visualisasi fungsi unite (Sumber: Rstudio,2017)}}{134}{figure.3.6}\protected@file@percent }
\newlabel{fig:unite}{{3.6}{134}{Visualisasi fungsi unite (Sumber: Rstudio,2017)}{figure.3.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.7}Transformasi Data}{135}{section.3.7}\protected@file@percent }
\newlabel{transformasi-data}{{3.7}{135}{Transformasi Data}{section.3.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.1}Paket dplyr}{135}{subsection.3.7.1}\protected@file@percent }
\newlabel{paket-dplyr}{{3.7.1}{135}{Paket dplyr}{subsection.3.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.2}filter()}{138}{subsection.3.7.2}\protected@file@percent }
\newlabel{filter}{{3.7.2}{138}{filter()}{subsection.3.7.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.7}{\ignorespaces Visualisasi fungsi filter (Sumber: Rstudio,2017)}}{139}{figure.3.7}\protected@file@percent }
\newlabel{fig:filtervis}{{3.7}{139}{Visualisasi fungsi filter (Sumber: Rstudio,2017)}{figure.3.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.8}{\ignorespaces Diagram operasi Boolean (Sumber: Wichham dan Grolemund, 2016)}}{141}{figure.3.8}\protected@file@percent }
\newlabel{fig:filter}{{3.8}{141}{Diagram operasi Boolean (Sumber: Wichham dan Grolemund, 2016)}{figure.3.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.7.2.1}Scope Filtering}{143}{subsubsection.3.7.2.1}\protected@file@percent }
\newlabel{scope-filtering}{{3.7.2.1}{143}{Scope Filtering}{subsubsection.3.7.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.7.2.2}Fungsi Lain Untuk Mengekstrak Observasi}{146}{subsubsection.3.7.2.2}\protected@file@percent }
\newlabel{fungsi-lain-untuk-mengekstrak-observasi}{{3.7.2.2}{146}{Fungsi Lain Untuk Mengekstrak Observasi}{subsubsection.3.7.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.3}arrange()}{149}{subsection.3.7.3}\protected@file@percent }
\newlabel{arrange}{{3.7.3}{149}{arrange()}{subsection.3.7.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.9}{\ignorespaces Visualisasi fungsi arrange (Sumber: Rstudio,2017)}}{150}{figure.3.9}\protected@file@percent }
\newlabel{fig:arrange}{{3.9}{150}{Visualisasi fungsi arrange (Sumber: Rstudio,2017)}{figure.3.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.4}select()}{152}{subsection.3.7.4}\protected@file@percent }
\newlabel{select}{{3.7.4}{152}{select()}{subsection.3.7.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.10}{\ignorespaces Visualisasi fungsi select (Sumber: Rstudio,2017)}}{154}{figure.3.10}\protected@file@percent }
\newlabel{fig:select}{{3.10}{154}{Visualisasi fungsi select (Sumber: Rstudio,2017)}{figure.3.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.7.4.1}Scope Varian dari Fungsi Select}{157}{subsubsection.3.7.4.1}\protected@file@percent }
\newlabel{scope-varian-dari-fungsi-select}{{3.7.4.1}{157}{Scope Varian dari Fungsi Select}{subsubsection.3.7.4.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.11}{\ignorespaces Visualisasi fungsi pull (Sumber: Rstudio,2017)}}{159}{figure.3.11}\protected@file@percent }
\newlabel{fig:pull}{{3.11}{159}{Visualisasi fungsi pull (Sumber: Rstudio,2017)}{figure.3.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.7.4.2}Fungsi Pull Untuk Mengambil Nilai Pada Kolom}{159}{subsubsection.3.7.4.2}\protected@file@percent }
\newlabel{fungsi-pull-untuk-mengambil-nilai-pada-kolom}{{3.7.4.2}{159}{Fungsi Pull Untuk Mengambil Nilai Pada Kolom}{subsubsection.3.7.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.5}mutate()}{160}{subsection.3.7.5}\protected@file@percent }
\newlabel{mutate}{{3.7.5}{160}{mutate()}{subsection.3.7.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.7.5.1}Scope Variant Fungsi Mutate dan Transmute}{164}{subsubsection.3.7.5.1}\protected@file@percent }
\newlabel{scope-variant-fungsi-mutate-dan-transmute}{{3.7.5.1}{164}{Scope Variant Fungsi Mutate dan Transmute}{subsubsection.3.7.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.7.5.2}Kustomisasi Nama Kolom dan Nama Baris}{169}{subsubsection.3.7.5.2}\protected@file@percent }
\newlabel{kustomisasi-nama-kolom-dan-nama-baris}{{3.7.5.2}{169}{Kustomisasi Nama Kolom dan Nama Baris}{subsubsection.3.7.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.6}summarize() dan group\_by()}{172}{subsection.3.7.6}\protected@file@percent }
\newlabel{summarize-dan-group_by}{{3.7.6}{172}{summarize() dan group\_by()}{subsection.3.7.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.7}Mengkombinasikan Beberapa Operasi Menggunakan Operator Pipe (\%\textgreater {}\%)}{173}{subsection.3.7.7}\protected@file@percent }
\newlabel{mengkombinasikan-beberapa-operasi-menggunakan-operator-pipe}{{3.7.7}{173}{Mengkombinasikan Beberapa Operasi Menggunakan Operator Pipe (\%\textgreater {}\%)}{subsection.3.7.7}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.8}Referensi}{175}{section.3.8}\protected@file@percent }
\newlabel{referensi-2}{{3.8}{175}{Referensi}{section.3.8}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.12}{\ignorespaces Jarak vs rata-rata delay}}{176}{figure.3.12}\protected@file@percent }
\newlabel{fig:distvsave}{{3.12}{176}{Jarak vs rata-rata delay}{figure.3.12}{}}
\newlabel{part-visualisasi-data---r}{{3.8}{179}{Visualisasi Data - R}{part*.6}{}}
\@writefile{toc}{\contentsline {part}{Visualisasi Data - R}{179}{part*.6}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {4}Visualisasi Data Menggunakan Fungsi Dasar R}{179}{chapter.4}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{visualisasi-data-menggunakan-fungsi-dasar-r}{{4}{179}{Visualisasi Data Menggunakan Fungsi Dasar R}{chapter.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.1}Visualisasi Data Menggunakan Fungsi plot()}{179}{section.4.1}\protected@file@percent }
\newlabel{visualisasi-data-menggunakan-fungsi-plot}{{4.1}{179}{Visualisasi Data Menggunakan Fungsi plot()}{section.4.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.1}{\ignorespaces Plot berbagai jenis setting type}}{181}{figure.4.1}\protected@file@percent }
\newlabel{fig:plot}{{4.1}{181}{Plot berbagai jenis setting type}{figure.4.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.2}{\ignorespaces Scatterplot Height vs Volume}}{182}{figure.4.2}\protected@file@percent }
\newlabel{fig:scatter}{{4.2}{182}{Scatterplot Height vs Volume}{figure.4.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.3}{\ignorespaces Matriks scatterplot dataset trees}}{183}{figure.4.3}\protected@file@percent }
\newlabel{fig:scatter2}{{4.3}{183}{Matriks scatterplot dataset trees}{figure.4.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.4}{\ignorespaces Plot diagnostik regresi linier}}{183}{figure.4.4}\protected@file@percent }
\newlabel{fig:diag}{{4.4}{183}{Plot diagnostik regresi linier}{figure.4.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.2}Matriks Scatterplot}{184}{section.4.2}\protected@file@percent }
\newlabel{matriks-scatterplot}{{4.2}{184}{Matriks Scatterplot}{section.4.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.5}{\ignorespaces Matriks scatterplot iris}}{185}{figure.4.5}\protected@file@percent }
\newlabel{fig:matscat}{{4.5}{185}{Matriks scatterplot iris}{figure.4.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.6}{\ignorespaces Matriks scatterplot iris tanpa panel bawah}}{186}{figure.4.6}\protected@file@percent }
\newlabel{fig:matscat2}{{4.6}{186}{Matriks scatterplot iris tanpa panel bawah}{figure.4.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.7}{\ignorespaces Matriks scatterplot iris tanpa panel bawah}}{187}{figure.4.7}\protected@file@percent }
\newlabel{fig:matscat3}{{4.7}{187}{Matriks scatterplot iris tanpa panel bawah}{figure.4.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.8}{\ignorespaces Matriks scatterplot iris dengan koefisien korelasi}}{188}{figure.4.8}\protected@file@percent }
\newlabel{fig:matscat4}{{4.8}{188}{Matriks scatterplot iris dengan koefisien korelasi}{figure.4.8}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.9}{\ignorespaces Matriks scatterplot iris dengan koefisien korelasi di panel atas}}{189}{figure.4.9}\protected@file@percent }
\newlabel{fig:matscat5}{{4.9}{189}{Matriks scatterplot iris dengan koefisien korelasi di panel atas}{figure.4.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}Box plot}{189}{section.4.3}\protected@file@percent }
\newlabel{box-plot}{{4.3}{189}{Box plot}{section.4.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.10}{\ignorespaces Boxplot variabel Sepal.Length}}{190}{figure.4.10}\protected@file@percent }
\newlabel{fig:boxplot}{{4.10}{190}{Boxplot variabel Sepal.Length}{figure.4.10}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.11}{\ignorespaces Boxplot berdasarkan variabel species}}{190}{figure.4.11}\protected@file@percent }
\newlabel{fig:boxplot2}{{4.11}{190}{Boxplot berdasarkan variabel species}{figure.4.11}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.12}{\ignorespaces Boxplot dengan warna berdasarkan spesies}}{191}{figure.4.12}\protected@file@percent }
\newlabel{fig:boxplot3}{{4.12}{191}{Boxplot dengan warna berdasarkan spesies}{figure.4.12}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.13}{\ignorespaces Boxplot multiple group}}{192}{figure.4.13}\protected@file@percent }
\newlabel{fig:boxplot4}{{4.13}{192}{Boxplot multiple group}{figure.4.13}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.14}{\ignorespaces a. bar plot vertikal; b. bar plot horizontal}}{193}{figure.4.14}\protected@file@percent }
\newlabel{fig:barplot}{{4.14}{193}{a. bar plot vertikal; b. bar plot horizontal}{figure.4.14}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.4}Bar Plot}{193}{section.4.4}\protected@file@percent }
\newlabel{bar-plot}{{4.4}{193}{Bar Plot}{section.4.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.15}{\ignorespaces Kustomisasi bar plot}}{194}{figure.4.15}\protected@file@percent }
\newlabel{fig:barplot2}{{4.15}{194}{Kustomisasi bar plot}{figure.4.15}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.16}{\ignorespaces Stacked bar plot}}{195}{figure.4.16}\protected@file@percent }
\newlabel{fig:barplot3}{{4.16}{195}{Stacked bar plot}{figure.4.16}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.17}{\ignorespaces Grouped bar plot}}{195}{figure.4.17}\protected@file@percent }
\newlabel{fig:barplot4}{{4.17}{195}{Grouped bar plot}{figure.4.17}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.18}{\ignorespaces Line plot}}{196}{figure.4.18}\protected@file@percent }
\newlabel{fig:line}{{4.18}{196}{Line plot}{figure.4.18}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.5}Line Plot}{196}{section.4.5}\protected@file@percent }
\newlabel{line-plot}{{4.5}{196}{Line Plot}{section.4.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.19}{\ignorespaces Pie chart}}{197}{figure.4.19}\protected@file@percent }
\newlabel{fig:pie}{{4.19}{197}{Pie chart}{figure.4.19}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.6}Pie Chart}{197}{section.4.6}\protected@file@percent }
\newlabel{pie-chart}{{4.6}{197}{Pie Chart}{section.4.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.7}Histogram dan Density Plot}{197}{section.4.7}\protected@file@percent }
\newlabel{histogram-dan-density-plot}{{4.7}{197}{Histogram dan Density Plot}{section.4.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.20}{\ignorespaces Histogram}}{198}{figure.4.20}\protected@file@percent }
\newlabel{fig:hist}{{4.20}{198}{Histogram}{figure.4.20}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.21}{\ignorespaces Density plot}}{199}{figure.4.21}\protected@file@percent }
\newlabel{fig:dens}{{4.21}{199}{Density plot}{figure.4.21}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.8}QQ Plot}{199}{section.4.8}\protected@file@percent }
\newlabel{qq-plot}{{4.8}{199}{QQ Plot}{section.4.8}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.22}{\ignorespaces Density plot dan histogram}}{200}{figure.4.22}\protected@file@percent }
\newlabel{fig:denshist}{{4.22}{200}{Density plot dan histogram}{figure.4.22}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.23}{\ignorespaces QQ plot}}{200}{figure.4.23}\protected@file@percent }
\newlabel{fig:qq}{{4.23}{200}{QQ plot}{figure.4.23}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.9}Dot Chart}{201}{section.4.9}\protected@file@percent }
\newlabel{dot-chart}{{4.9}{201}{Dot Chart}{section.4.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.10}Kustomisasi Parameter Grafik}{201}{section.4.10}\protected@file@percent }
\newlabel{kustomisasi-parameter-grafik}{{4.10}{201}{Kustomisasi Parameter Grafik}{section.4.10}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.24}{\ignorespaces Dot chart}}{202}{figure.4.24}\protected@file@percent }
\newlabel{fig:dot}{{4.24}{202}{Dot chart}{figure.4.24}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.10.1}Menambahkan Judul}{202}{subsection.4.10.1}\protected@file@percent }
\newlabel{menambahkan-judul}{{4.10.1}{202}{Menambahkan Judul}{subsection.4.10.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.25}{\ignorespaces Menambahkan Judul}}{203}{figure.4.25}\protected@file@percent }
\newlabel{fig:title}{{4.25}{203}{Menambahkan Judul}{figure.4.25}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.26}{\ignorespaces Menambahkan Judul (2)}}{204}{figure.4.26}\protected@file@percent }
\newlabel{fig:title2}{{4.26}{204}{Menambahkan Judul (2)}{figure.4.26}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.27}{\ignorespaces Menambahkan Judul (3)}}{205}{figure.4.27}\protected@file@percent }
\newlabel{fig:title3}{{4.27}{205}{Menambahkan Judul (3)}{figure.4.27}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.10.2}Menambahkan Legend}{205}{subsection.4.10.2}\protected@file@percent }
\newlabel{menambahkan-legend}{{4.10.2}{205}{Menambahkan Legend}{subsection.4.10.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.28}{\ignorespaces Menambahkan legend}}{207}{figure.4.28}\protected@file@percent }
\newlabel{fig:legend}{{4.28}{207}{Menambahkan legend}{figure.4.28}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.29}{\ignorespaces Menambahkan legend (2)}}{208}{figure.4.29}\protected@file@percent }
\newlabel{fig:legend2}{{4.29}{208}{Menambahkan legend (2)}{figure.4.29}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.30}{\ignorespaces Menambahkan legend (3)}}{208}{figure.4.30}\protected@file@percent }
\newlabel{fig:legend3}{{4.30}{208}{Menambahkan legend (3)}{figure.4.30}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.31}{\ignorespaces Kustomisasi posisi legend}}{210}{figure.4.31}\protected@file@percent }
\newlabel{fig:legend4}{{4.31}{210}{Kustomisasi posisi legend}{figure.4.31}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.10.3}Menambahkan Teks Pada Grafik}{210}{subsection.4.10.3}\protected@file@percent }
\newlabel{menambahkan-teks-pada-grafik}{{4.10.3}{210}{Menambahkan Teks Pada Grafik}{subsection.4.10.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.32}{\ignorespaces Menambahkan teks}}{211}{figure.4.32}\protected@file@percent }
\newlabel{fig:text}{{4.32}{211}{Menambahkan teks}{figure.4.32}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.33}{\ignorespaces Menambahkan teks (2)}}{212}{figure.4.33}\protected@file@percent }
\newlabel{fig:text2}{{4.33}{212}{Menambahkan teks (2)}{figure.4.33}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.10.4}Menambahkan Garis Pada Plot}{212}{subsection.4.10.4}\protected@file@percent }
\newlabel{menambahkan-garis-pada-plot}{{4.10.4}{212}{Menambahkan Garis Pada Plot}{subsection.4.10.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.34}{\ignorespaces Menambahkan teks (3)}}{213}{figure.4.34}\protected@file@percent }
\newlabel{fig:text3}{{4.34}{213}{Menambahkan teks (3)}{figure.4.34}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.10.5}Merubah Simbol plot dan Jenis Garis}{213}{subsection.4.10.5}\protected@file@percent }
\newlabel{merubah-simbol-plot-dan-jenis-garis}{{4.10.5}{213}{Merubah Simbol plot dan Jenis Garis}{subsection.4.10.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.35}{\ignorespaces Menambahkan garis}}{214}{figure.4.35}\protected@file@percent }
\newlabel{fig:abline}{{4.35}{214}{Menambahkan garis}{figure.4.35}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.36}{\ignorespaces Symbol plot}}{215}{figure.4.36}\protected@file@percent }
\newlabel{fig:symbol}{{4.36}{215}{Symbol plot}{figure.4.36}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.37}{\ignorespaces Line type}}{216}{figure.4.37}\protected@file@percent }
\newlabel{fig:lty}{{4.37}{216}{Line type}{figure.4.37}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.10.6}Mengatur Axis Plot}{216}{subsection.4.10.6}\protected@file@percent }
\newlabel{mengatur-axis-plot}{{4.10.6}{216}{Mengatur Axis Plot}{subsection.4.10.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.38}{\ignorespaces Menambahkan axis}}{218}{figure.4.38}\protected@file@percent }
\newlabel{fig:axis}{{4.38}{218}{Menambahkan axis}{figure.4.38}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.39}{\ignorespaces Mengubah rentang dan skala axis}}{219}{figure.4.39}\protected@file@percent }
\newlabel{fig:axis2}{{4.39}{219}{Mengubah rentang dan skala axis}{figure.4.39}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.40}{\ignorespaces Kustomisasi tick mark}}{220}{figure.4.40}\protected@file@percent }
\newlabel{fig:axis3}{{4.40}{220}{Kustomisasi tick mark}{figure.4.40}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.10.7}Mengatur Warna}{220}{subsection.4.10.7}\protected@file@percent }
\newlabel{mengatur-warna}{{4.10.7}{220}{Mengatur Warna}{subsection.4.10.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.41}{\ignorespaces Nama warna}}{221}{figure.4.41}\protected@file@percent }
\newlabel{fig:color}{{4.41}{221}{Nama warna}{figure.4.41}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.11}Alternatif Library Dasar Lain}{221}{section.4.11}\protected@file@percent }
\newlabel{alternatif-library-dasar-lain}{{4.11}{221}{Alternatif Library Dasar Lain}{section.4.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.11.1}Scatterplot Menggunakan Library car}{221}{subsection.4.11.1}\protected@file@percent }
\newlabel{scatterplot-menggunakan-library-car}{{4.11.1}{221}{Scatterplot Menggunakan Library car}{subsection.4.11.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.42}{\ignorespaces Enhanced scatterplot}}{222}{figure.4.42}\protected@file@percent }
\newlabel{fig:carscatter}{{4.42}{222}{Enhanced scatterplot}{figure.4.42}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.11.2}Matriks Scatterplot Menggunakan Library psych}{222}{subsection.4.11.2}\protected@file@percent }
\newlabel{matriks-scatterplot-menggunakan-library-psych}{{4.11.2}{222}{Matriks Scatterplot Menggunakan Library psych}{subsection.4.11.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.43}{\ignorespaces Enhanced scatterplot matrices}}{223}{figure.4.43}\protected@file@percent }
\newlabel{fig:psychscatter}{{4.43}{223}{Enhanced scatterplot matrices}{figure.4.43}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.11.3}Box Plot Menggunakan Library gplots}{223}{subsection.4.11.3}\protected@file@percent }
\newlabel{box-plot-menggunakan-library-gplots}{{4.11.3}{223}{Box Plot Menggunakan Library gplots}{subsection.4.11.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.44}{\ignorespaces Enhanced box plot}}{224}{figure.4.44}\protected@file@percent }
\newlabel{fig:gplotsboxplot2}{{4.44}{224}{Enhanced box plot}{figure.4.44}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.11.4}QQ Plot Menggunakan Library car}{224}{subsection.4.11.4}\protected@file@percent }
\newlabel{qq-plot-menggunakan-library-car}{{4.11.4}{224}{QQ Plot Menggunakan Library car}{subsection.4.11.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.45}{\ignorespaces Enhanced qq plot}}{225}{figure.4.45}\protected@file@percent }
\newlabel{fig:carqqplot}{{4.45}{225}{Enhanced qq plot}{figure.4.45}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.11.5}Plot Group Means Menggunakan Library gplots}{225}{subsection.4.11.5}\protected@file@percent }
\newlabel{plot-group-means-menggunakan-library-gplots}{{4.11.5}{225}{Plot Group Means Menggunakan Library gplots}{subsection.4.11.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.46}{\ignorespaces Plot group means}}{226}{figure.4.46}\protected@file@percent }
\newlabel{fig:plotmeans}{{4.46}{226}{Plot group means}{figure.4.46}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.12}Referensi}{226}{section.4.12}\protected@file@percent }
\newlabel{referensi-3}{{4.12}{226}{Referensi}{section.4.12}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {5}Visualisasi Data Menggunakan GGPLOT}{227}{chapter.5}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{visualisasi-data-menggunakan-ggplot}{{5}{227}{Visualisasi Data Menggunakan GGPLOT}{chapter.5}{}}
\@writefile{lot}{\contentsline {table}{\numberline {5.1}{\ignorespaces 20 observasi pertama dataset gapminder}}{229}{table.5.1}\protected@file@percent }
\newlabel{tab:gapminder}{{5.1}{229}{20 observasi pertama dataset gapminder}{table.5.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.1}Scatterplot}{229}{section.5.1}\protected@file@percent }
\newlabel{scatterplot}{{5.1}{229}{Scatterplot}{section.5.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.1}{\ignorespaces Scatterplot lifeExp vs gdpPercap}}{230}{figure.5.1}\protected@file@percent }
\newlabel{fig:ggscatter}{{5.1}{230}{Scatterplot lifeExp vs gdpPercap}{figure.5.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.2}{\ignorespaces Scatterplot lifeExp vs gdpPercap tiap benua (1)}}{231}{figure.5.2}\protected@file@percent }
\newlabel{fig:ggscatter2}{{5.2}{231}{Scatterplot lifeExp vs gdpPercap tiap benua (1)}{figure.5.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.3}{\ignorespaces Scatterplot lifeExp vs gdpPercap tiap benua (2)}}{231}{figure.5.3}\protected@file@percent }
\newlabel{fig:ggscatter3}{{5.3}{231}{Scatterplot lifeExp vs gdpPercap tiap benua (2)}{figure.5.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.4}{\ignorespaces Scatterplot lifeExp vs gdpPercap dan populasi tiap negara dan benua}}{232}{figure.5.4}\protected@file@percent }
\newlabel{fig:ggscatter4}{{5.4}{232}{Scatterplot lifeExp vs gdpPercap dan populasi tiap negara dan benua}{figure.5.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.5}{\ignorespaces Scatterplot lifeExp vs gdpPercap dengan garis penghalusan regresi linier}}{233}{figure.5.5}\protected@file@percent }
\newlabel{fig:ggscatter5}{{5.5}{233}{Scatterplot lifeExp vs gdpPercap dengan garis penghalusan regresi linier}{figure.5.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.2}Box Plot dan Violin Plot}{233}{section.5.2}\protected@file@percent }
\newlabel{box-plot-dan-violin-plot}{{5.2}{233}{Box Plot dan Violin Plot}{section.5.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.6}{\ignorespaces Box plot variabel lifeExp}}{234}{figure.5.6}\protected@file@percent }
\newlabel{fig:ggboxplot}{{5.6}{234}{Box plot variabel lifeExp}{figure.5.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.7}{\ignorespaces Box plot variabel lifeExp pada tiap continent}}{235}{figure.5.7}\protected@file@percent }
\newlabel{fig:ggboxplot2}{{5.7}{235}{Box plot variabel lifeExp pada tiap continent}{figure.5.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.8}{\ignorespaces Box plot variabel lifeExp pada tiap continent (1952 dan 2007)}}{236}{figure.5.8}\protected@file@percent }
\newlabel{fig:ggboxplot3}{{5.8}{236}{Box plot variabel lifeExp pada tiap continent (1952 dan 2007)}{figure.5.8}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.9}{\ignorespaces Box plot variabel lifeExp Benua Asia}}{236}{figure.5.9}\protected@file@percent }
\newlabel{fig:ggboxplot4}{{5.9}{236}{Box plot variabel lifeExp Benua Asia}{figure.5.9}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.10}{\ignorespaces Violin plot variabel lifeExp pada masing-masing benua}}{237}{figure.5.10}\protected@file@percent }
\newlabel{fig:ggviolin}{{5.10}{237}{Violin plot variabel lifeExp pada masing-masing benua}{figure.5.10}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.11}{\ignorespaces Violin plot variabel lifeExp pada masing-masing benua (2)}}{238}{figure.5.11}\protected@file@percent }
\newlabel{fig:ggviolin2}{{5.11}{238}{Violin plot variabel lifeExp pada masing-masing benua (2)}{figure.5.11}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.3}Bar Plot}{238}{section.5.3}\protected@file@percent }
\newlabel{bar-plot-1}{{5.3}{238}{Bar Plot}{section.5.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.12}{\ignorespaces Bar plot rata-rata lifeExp masing-masing benua}}{239}{figure.5.12}\protected@file@percent }
\newlabel{fig:ggbar}{{5.12}{239}{Bar plot rata-rata lifeExp masing-masing benua}{figure.5.12}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.13}{\ignorespaces Bar plot rata-rata lifeExp masing-masing benua dengan confidence interval}}{240}{figure.5.13}\protected@file@percent }
\newlabel{fig:ggbar2}{{5.13}{240}{Bar plot rata-rata lifeExp masing-masing benua dengan confidence interval}{figure.5.13}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.4}Line Plot}{240}{section.5.4}\protected@file@percent }
\newlabel{line-plot-1}{{5.4}{240}{Line Plot}{section.5.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.14}{\ignorespaces Bar plot rata-rata lifeExp masing-masing benua (1952 dan 2007) dengan confidence interval}}{241}{figure.5.14}\protected@file@percent }
\newlabel{fig:ggbar3}{{5.14}{241}{Bar plot rata-rata lifeExp masing-masing benua (1952 dan 2007) dengan confidence interval}{figure.5.14}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.15}{\ignorespaces Line plot lifeExp masing-masing benua }}{242}{figure.5.15}\protected@file@percent }
\newlabel{fig:ggline}{{5.15}{242}{Line plot lifeExp masing-masing benua}{figure.5.15}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.5}Pie Chart}{242}{section.5.5}\protected@file@percent }
\newlabel{pie-chart-1}{{5.5}{242}{Pie Chart}{section.5.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.16}{\ignorespaces Histogram lifeExp }}{243}{figure.5.16}\protected@file@percent }
\newlabel{fig:ggline2}{{5.16}{243}{Histogram lifeExp}{figure.5.16}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.17}{\ignorespaces Pie chart pop}}{243}{figure.5.17}\protected@file@percent }
\newlabel{fig:ggpie}{{5.17}{243}{Pie chart pop}{figure.5.17}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.18}{\ignorespaces Histogram lifeExp }}{244}{figure.5.18}\protected@file@percent }
\newlabel{fig:gghist}{{5.18}{244}{Histogram lifeExp}{figure.5.18}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.6}Histogram dan Desity Plot}{244}{section.5.6}\protected@file@percent }
\newlabel{histogram-dan-desity-plot}{{5.6}{244}{Histogram dan Desity Plot}{section.5.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.19}{\ignorespaces Histogram lifeExp berdasarkan benua}}{245}{figure.5.19}\protected@file@percent }
\newlabel{fig:gghist2}{{5.19}{245}{Histogram lifeExp berdasarkan benua}{figure.5.19}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.20}{\ignorespaces Density plot lifeExp }}{246}{figure.5.20}\protected@file@percent }
\newlabel{fig:ggdens}{{5.20}{246}{Density plot lifeExp}{figure.5.20}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.21}{\ignorespaces Density plot lifeExp berdasarkan benua}}{246}{figure.5.21}\protected@file@percent }
\newlabel{fig:ggdens2}{{5.21}{246}{Density plot lifeExp berdasarkan benua}{figure.5.21}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.22}{\ignorespaces histogram dan density plot lifeExp }}{247}{figure.5.22}\protected@file@percent }
\newlabel{fig:ggdenshist}{{5.22}{247}{histogram dan density plot lifeExp}{figure.5.22}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.7}QQ Plot}{247}{section.5.7}\protected@file@percent }
\newlabel{qq-plot-1}{{5.7}{247}{QQ Plot}{section.5.7}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.8}Dot Plot}{247}{section.5.8}\protected@file@percent }
\newlabel{dot-plot}{{5.8}{247}{Dot Plot}{section.5.8}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.23}{\ignorespaces QQ plot variabel lifeExp}}{248}{figure.5.23}\protected@file@percent }
\newlabel{fig:ggqq}{{5.23}{248}{QQ plot variabel lifeExp}{figure.5.23}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.9}ECDF Plot}{248}{section.5.9}\protected@file@percent }
\newlabel{ecdf-plot}{{5.9}{248}{ECDF Plot}{section.5.9}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.24}{\ignorespaces Dot plot variabel lifeExp masing-masing benua (1952-2007)}}{249}{figure.5.24}\protected@file@percent }
\newlabel{fig:dotplot}{{5.24}{249}{Dot plot variabel lifeExp masing-masing benua (1952-2007)}{figure.5.24}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.25}{\ignorespaces Dot plot variabel lifeExp masing-masing benua (1952-2007) (2)}}{249}{figure.5.25}\protected@file@percent }
\newlabel{fig:dotplot2}{{5.25}{249}{Dot plot variabel lifeExp masing-masing benua (1952-2007) (2)}{figure.5.25}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.26}{\ignorespaces ECDF plot variabel lifeExp}}{250}{figure.5.26}\protected@file@percent }
\newlabel{fig:ggecdf}{{5.26}{250}{ECDF plot variabel lifeExp}{figure.5.26}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.10}Parameter Grafik}{250}{section.5.10}\protected@file@percent }
\newlabel{parameter-grafik}{{5.10}{250}{Parameter Grafik}{section.5.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.1}Merubah Judul Grafik, Keterangan Axis dan Legend}{250}{subsection.5.10.1}\protected@file@percent }
\newlabel{merubah-judul-grafik-keterangan-axis-dan-legend}{{5.10.1}{250}{Merubah Judul Grafik, Keterangan Axis dan Legend}{subsection.5.10.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.27}{\ignorespaces Mengubah judul grafik dan keterangan axis}}{251}{figure.5.27}\protected@file@percent }
\newlabel{fig:ggtitle}{{5.27}{251}{Mengubah judul grafik dan keterangan axis}{figure.5.27}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.28}{\ignorespaces Mengubah keterangan legend pada grafik}}{252}{figure.5.28}\protected@file@percent }
\newlabel{fig:ggtitle2}{{5.28}{252}{Mengubah keterangan legend pada grafik}{figure.5.28}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.29}{\ignorespaces Kustomisasi judul grafik dan keterangan axis}}{253}{figure.5.29}\protected@file@percent }
\newlabel{fig:ggtitle3}{{5.29}{253}{Kustomisasi judul grafik dan keterangan axis}{figure.5.29}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.2}Merubah Tampilan dan Posisi Legend}{254}{subsection.5.10.2}\protected@file@percent }
\newlabel{merubah-tampilan-dan-posisi-legend}{{5.10.2}{254}{Merubah Tampilan dan Posisi Legend}{subsection.5.10.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.30}{\ignorespaces Kustomisasi posisi legend berdasarkan karakter}}{255}{figure.5.30}\protected@file@percent }
\newlabel{fig:gglegend}{{5.30}{255}{Kustomisasi posisi legend berdasarkan karakter}{figure.5.30}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.31}{\ignorespaces Kustomisasi posisi legend berdasarkan vektor numerik}}{255}{figure.5.31}\protected@file@percent }
\newlabel{fig:gglegend2}{{5.31}{255}{Kustomisasi posisi legend berdasarkan vektor numerik}{figure.5.31}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.32}{\ignorespaces Kustomisasi tampilan legend}}{256}{figure.5.32}\protected@file@percent }
\newlabel{fig:gglegend3}{{5.32}{256}{Kustomisasi tampilan legend}{figure.5.32}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.33}{\ignorespaces Menghilangkan seluruh legend}}{257}{figure.5.33}\protected@file@percent }
\newlabel{fig:gglegend4}{{5.33}{257}{Menghilangkan seluruh legend}{figure.5.33}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.34}{\ignorespaces Menghilangkan sebagian legend legend}}{258}{figure.5.34}\protected@file@percent }
\newlabel{fig:gglegend5}{{5.34}{258}{Menghilangkan sebagian legend legend}{figure.5.34}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.3}Merubah Warana Pada Grafik Secara Otomatis dan Manual}{258}{subsection.5.10.3}\protected@file@percent }
\newlabel{merubah-warana-pada-grafik-secara-otomatis-dan-manual}{{5.10.3}{258}{Merubah Warana Pada Grafik Secara Otomatis dan Manual}{subsection.5.10.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.35}{\ignorespaces Merubah warna grup berdasarkan satu warna}}{259}{figure.5.35}\protected@file@percent }
\newlabel{fig:ggcolor}{{5.35}{259}{Merubah warna grup berdasarkan satu warna}{figure.5.35}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.36}{\ignorespaces Merubah warna grup secara otomatis}}{260}{figure.5.36}\protected@file@percent }
\newlabel{fig:ggcolor2}{{5.36}{260}{Merubah warna grup secara otomatis}{figure.5.36}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.37}{\ignorespaces Merubah pencahayaan dan intensitas warna}}{260}{figure.5.37}\protected@file@percent }
\newlabel{fig:ggcolor3}{{5.37}{260}{Merubah pencahayaan dan intensitas warna}{figure.5.37}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.38}{\ignorespaces Merubah warna secara manual}}{261}{figure.5.38}\protected@file@percent }
\newlabel{fig:ggcolor4}{{5.38}{261}{Merubah warna secara manual}{figure.5.38}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.39}{\ignorespaces Palet warna RColorBrewer}}{262}{figure.5.39}\protected@file@percent }
\newlabel{fig:ggcolor5}{{5.39}{262}{Palet warna RColorBrewer}{figure.5.39}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.40}{\ignorespaces Merubah warna menggunakan palet}}{263}{figure.5.40}\protected@file@percent }
\newlabel{fig:ggcolor6}{{5.40}{263}{Merubah warna menggunakan palet}{figure.5.40}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.4}Kustomisasi Titik}{263}{subsection.5.10.4}\protected@file@percent }
\newlabel{kustomisasi-titik}{{5.10.4}{263}{Kustomisasi Titik}{subsection.5.10.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.41}{\ignorespaces Merubah warna menggunakan palet gray}}{264}{figure.5.41}\protected@file@percent }
\newlabel{fig:ggcolor7}{{5.41}{264}{Merubah warna menggunakan palet gray}{figure.5.41}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.42}{\ignorespaces Kustomisasi jenis, ukuran dan warna titik}}{265}{figure.5.42}\protected@file@percent }
\newlabel{fig:ggpoint}{{5.42}{265}{Kustomisasi jenis, ukuran dan warna titik}{figure.5.42}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.43}{\ignorespaces Kustomisasi jenis, ukuran dan warna titik untuk multiple group secara otomatis}}{265}{figure.5.43}\protected@file@percent }
\newlabel{fig:ggpoint2}{{5.43}{265}{Kustomisasi jenis, ukuran dan warna titik untuk multiple group secara otomatis}{figure.5.43}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.44}{\ignorespaces Kustomisasi jenis, ukuran dan warna titik untuk multiple group secara manual}}{266}{figure.5.44}\protected@file@percent }
\newlabel{fig:ggpoint3}{{5.44}{266}{Kustomisasi jenis, ukuran dan warna titik untuk multiple group secara manual}{figure.5.44}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.5}Kustomisasi Jenis Garis}{266}{subsection.5.10.5}\protected@file@percent }
\newlabel{kustomisasi-jenis-garis}{{5.10.5}{266}{Kustomisasi Jenis Garis}{subsection.5.10.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.45}{\ignorespaces Kustomisasi jenis, ukuran dan warna garis}}{267}{figure.5.45}\protected@file@percent }
\newlabel{fig:gglty}{{5.45}{267}{Kustomisasi jenis, ukuran dan warna garis}{figure.5.45}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.46}{\ignorespaces Kustomisasi jenis, ukuran dan warna garis untuk multiple group secara otomatis}}{268}{figure.5.46}\protected@file@percent }
\newlabel{fig:gglty2}{{5.46}{268}{Kustomisasi jenis, ukuran dan warna garis untuk multiple group secara otomatis}{figure.5.46}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.6}Menambahkan Label Pada Titik Observasi dan Bidang Plot}{268}{subsection.5.10.6}\protected@file@percent }
\newlabel{menambahkan-label-pada-titik-observasi-dan-bidang-plot}{{5.10.6}{268}{Menambahkan Label Pada Titik Observasi dan Bidang Plot}{subsection.5.10.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.47}{\ignorespaces Kustomisasi jenis, ukuran dan warna garis untuk multiple group secara manual}}{269}{figure.5.47}\protected@file@percent }
\newlabel{fig:gglty3}{{5.47}{269}{Kustomisasi jenis, ukuran dan warna garis untuk multiple group secara manual}{figure.5.47}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.48}{\ignorespaces Scatterplot variabel pop vs gdpPercap}}{269}{figure.5.48}\protected@file@percent }
\newlabel{fig:gglabel}{{5.48}{269}{Scatterplot variabel pop vs gdpPercap}{figure.5.48}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.49}{\ignorespaces Scatterplot variabel pop vs gdpPercap dengan label}}{270}{figure.5.49}\protected@file@percent }
\newlabel{fig:gglabel2}{{5.49}{270}{Scatterplot variabel pop vs gdpPercap dengan label}{figure.5.49}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.50}{\ignorespaces Scatterplot variabel pop vs gdpPercap dengan label dan notasi}}{271}{figure.5.50}\protected@file@percent }
\newlabel{fig:gglabel3}{{5.50}{271}{Scatterplot variabel pop vs gdpPercap dengan label dan notasi}{figure.5.50}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.7}Kustomisasi Tema Pada Plot}{271}{subsection.5.10.7}\protected@file@percent }
\newlabel{kustomisasi-tema-pada-plot}{{5.10.7}{271}{Kustomisasi Tema Pada Plot}{subsection.5.10.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.51}{\ignorespaces Scatterplot variabel pop vs gdpPercap dengan label dan notasi pada tiap panel}}{272}{figure.5.51}\protected@file@percent }
\newlabel{fig:gglabel4}{{5.51}{272}{Scatterplot variabel pop vs gdpPercap dengan label dan notasi pada tiap panel}{figure.5.51}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.52}{\ignorespaces Scatterplot dengan tema black and white}}{273}{figure.5.52}\protected@file@percent }
\newlabel{fig:ggtema}{{5.52}{273}{Scatterplot dengan tema black and white}{figure.5.52}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.53}{\ignorespaces Scatterplot dengan tema Wall Street Journal}}{274}{figure.5.53}\protected@file@percent }
\newlabel{fig:ggtema2}{{5.53}{274}{Scatterplot dengan tema Wall Street Journal}{figure.5.53}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.8}Penskalaan dan Transformasi Axis}{275}{subsection.5.10.8}\protected@file@percent }
\newlabel{penskalaan-dan-transformasi-axis}{{5.10.8}{275}{Penskalaan dan Transformasi Axis}{subsection.5.10.8}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.54}{\ignorespaces Scatterplot dengan axis limits }}{276}{figure.5.54}\protected@file@percent }
\newlabel{fig:gglimits}{{5.54}{276}{Scatterplot dengan axis limits}{figure.5.54}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.55}{\ignorespaces Scatterplot dengan axis limits (2) }}{277}{figure.5.55}\protected@file@percent }
\newlabel{fig:gglimits2}{{5.55}{277}{Scatterplot dengan axis limits (2)}{figure.5.55}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.56}{\ignorespaces Scatterplot dengan transformasi axis }}{278}{figure.5.56}\protected@file@percent }
\newlabel{fig:gglimits3}{{5.56}{278}{Scatterplot dengan transformasi axis}{figure.5.56}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.57}{\ignorespaces Scatterplot dengan transformasi tick mark axis }}{279}{figure.5.57}\protected@file@percent }
\newlabel{fig:gglimits4}{{5.57}{279}{Scatterplot dengan transformasi tick mark axis}{figure.5.57}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.9}Kustomisasi Tick Mark Axis}{279}{subsection.5.10.9}\protected@file@percent }
\newlabel{kustomisasi-tick-mark-axis}{{5.10.9}{279}{Kustomisasi Tick Mark Axis}{subsection.5.10.9}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.58}{\ignorespaces Mengubah tampilan dari tick mark}}{281}{figure.5.58}\protected@file@percent }
\newlabel{fig:ggtick}{{5.58}{281}{Mengubah tampilan dari tick mark}{figure.5.58}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.59}{\ignorespaces Menyembunyikan tampilan dari tick mark}}{281}{figure.5.59}\protected@file@percent }
\newlabel{fig:ggtick2}{{5.59}{281}{Menyembunyikan tampilan dari tick mark}{figure.5.59}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.60}{\ignorespaces Kustomisasi tampilan dari garis axis}}{282}{figure.5.60}\protected@file@percent }
\newlabel{fig:ggtick3}{{5.60}{282}{Kustomisasi tampilan dari garis axis}{figure.5.60}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.61}{\ignorespaces Kustomisasi tick mark}}{283}{figure.5.61}\protected@file@percent }
\newlabel{fig:ggtick4}{{5.61}{283}{Kustomisasi tick mark}{figure.5.61}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.10}Menambahkan Garis Lurus Pada Plot}{283}{subsection.5.10.10}\protected@file@percent }
\newlabel{menambahkan-garis-lurus-pada-plot}{{5.10.10}{283}{Menambahkan Garis Lurus Pada Plot}{subsection.5.10.10}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.62}{\ignorespaces Penerapan vline}}{284}{figure.5.62}\protected@file@percent }
\newlabel{fig:ggvline}{{5.62}{284}{Penerapan vline}{figure.5.62}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.63}{\ignorespaces Penerapan hline}}{285}{figure.5.63}\protected@file@percent }
\newlabel{fig:gghline}{{5.63}{285}{Penerapan hline}{figure.5.63}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.64}{\ignorespaces Penerapan abline}}{286}{figure.5.64}\protected@file@percent }
\newlabel{fig:ggabline}{{5.64}{286}{Penerapan abline}{figure.5.64}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.65}{\ignorespaces Penerapan garis segmen}}{287}{figure.5.65}\protected@file@percent }
\newlabel{fig:ggsegment}{{5.65}{287}{Penerapan garis segmen}{figure.5.65}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.11}Melakukan Rotasi Pada Grafik}{287}{subsection.5.10.11}\protected@file@percent }
\newlabel{melakukan-rotasi-pada-grafik}{{5.10.11}{287}{Melakukan Rotasi Pada Grafik}{subsection.5.10.11}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.66}{\ignorespaces Rotasi axis}}{288}{figure.5.66}\protected@file@percent }
\newlabel{fig:ggcoord}{{5.66}{288}{Rotasi axis}{figure.5.66}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10.12}Facet}{288}{subsection.5.10.12}\protected@file@percent }
\newlabel{facet}{{5.10.12}{288}{Facet}{subsection.5.10.12}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.67}{\ignorespaces Pembalikan sumbu y}}{289}{figure.5.67}\protected@file@percent }
\newlabel{fig:ggyreverse}{{5.67}{289}{Pembalikan sumbu y}{figure.5.67}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.68}{\ignorespaces Facet horizontal satu variabel}}{290}{figure.5.68}\protected@file@percent }
\newlabel{fig:ggfacetgrid}{{5.68}{290}{Facet horizontal satu variabel}{figure.5.68}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.69}{\ignorespaces Facet vertikal satu variabel}}{290}{figure.5.69}\protected@file@percent }
\newlabel{fig:ggfacetgrid2}{{5.69}{290}{Facet vertikal satu variabel}{figure.5.69}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.70}{\ignorespaces Facet dua variabel}}{291}{figure.5.70}\protected@file@percent }
\newlabel{fig:ggfacetgrid3}{{5.70}{291}{Facet dua variabel}{figure.5.70}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.71}{\ignorespaces Facet dua variabel dengan skala bebas pada sumbu y}}{292}{figure.5.71}\protected@file@percent }
\newlabel{fig:ggfacetgrid4}{{5.71}{292}{Facet dua variabel dengan skala bebas pada sumbu y}{figure.5.71}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.11}Referensi}{292}{section.5.11}\protected@file@percent }
\newlabel{referensi-4}{{5.11}{292}{Referensi}{section.5.11}{}}
\newlabel{part-statistika-deskriptif---r}{{5.11}{295}{Statistika Deskriptif - R}{part*.7}{}}
\@writefile{toc}{\contentsline {part}{Statistika Deskriptif - R}{295}{part*.7}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {6}Ringkasan Numerik}{295}{chapter.6}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{ringkasan-numerik}{{6}{295}{Ringkasan Numerik}{chapter.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.1}Ukuran Pemusatan Data}{295}{section.6.1}\protected@file@percent }
\newlabel{ukuran-pemusatan-data}{{6.1}{295}{Ukuran Pemusatan Data}{section.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.1}Pengukuran Klasik-Mean}{296}{subsection.6.1.1}\protected@file@percent }
\newlabel{pengukuran-klasik-mean}{{6.1.1}{296}{Pengukuran Klasik-Mean}{subsection.6.1.1}{}}
\newlabel{eq:mean}{{6.1}{296}{Pengukuran Klasik-Mean}{equation.6.1.1}{}}
\newlabel{eq:weightedmean}{{6.2}{296}{Pengukuran Klasik-Mean}{equation.6.1.2}{}}
\newlabel{eq:influencemean1}{{6.3}{296}{Pengukuran Klasik-Mean}{equation.6.1.3}{}}
\newlabel{eq:influencemean2}{{6.4}{296}{Pengukuran Klasik-Mean}{equation.6.1.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.1}{\ignorespaces Nilai mean (segitiga) sebagai titik kesetimbangan pada data.}}{297}{figure.6.1}\protected@file@percent }
\newlabel{fig:mean1}{{6.1}{297}{Nilai mean (segitiga) sebagai titik kesetimbangan pada data}{figure.6.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.2}{\ignorespaces Pergeseran nilai mean (segitiga) ke kiri setelah penghilangan outlier.}}{297}{figure.6.2}\protected@file@percent }
\newlabel{fig:mean2}{{6.2}{297}{Pergeseran nilai mean (segitiga) ke kiri setelah penghilangan outlier}{figure.6.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {6.1}{\ignorespaces Data Debit Sampel (m3/detik)}}{298}{table.6.1}\protected@file@percent }
\newlabel{tab:debitsungai}{{6.1}{298}{Data Debit Sampel (m3/detik)}{table.6.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.3}{\ignorespaces Visualisasi debit sungai pada sampel}}{299}{figure.6.3}\protected@file@percent }
\newlabel{fig:debitvis}{{6.3}{299}{Visualisasi debit sungai pada sampel}{figure.6.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.4}{\ignorespaces Visualisasi konsentrasi TDS pada air tanah}}{301}{figure.6.4}\protected@file@percent }
\newlabel{fig:gwvis1}{{6.4}{301}{Visualisasi konsentrasi TDS pada air tanah}{figure.6.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.5}{\ignorespaces Visualisasi konsentrasi Uranium pada air tanah}}{301}{figure.6.5}\protected@file@percent }
\newlabel{fig:gwvis2}{{6.5}{301}{Visualisasi konsentrasi Uranium pada air tanah}{figure.6.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.2}Median Sebagai Ukuran Pemusatan Data yang Resistan}{302}{subsection.6.1.2}\protected@file@percent }
\newlabel{median-sebagai-ukuran-pemusatan-data-yang-resistan}{{6.1.2}{302}{Median Sebagai Ukuran Pemusatan Data yang Resistan}{subsection.6.1.2}{}}
\newlabel{eq:med1}{{6.5}{302}{Median Sebagai Ukuran Pemusatan Data yang Resistan}{equation.6.1.5}{}}
\newlabel{eq:med2}{{6.6}{302}{Median Sebagai Ukuran Pemusatan Data yang Resistan}{equation.6.1.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.3}Ukuran Pemusatan Data Lainnya}{304}{subsection.6.1.3}\protected@file@percent }
\newlabel{ukuran-pemusatan-data-lainnya}{{6.1.3}{304}{Ukuran Pemusatan Data Lainnya}{subsection.6.1.3}{}}
\newlabel{eq:geomean}{{6.7}{304}{Ukuran Pemusatan Data Lainnya}{equation.6.1.7}{}}
\newlabel{eq:geomean2}{{6.8}{304}{Ukuran Pemusatan Data Lainnya}{equation.6.1.8}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.6}{\ignorespaces Jendela diagram trimmed mean.}}{305}{figure.6.6}\protected@file@percent }
\newlabel{fig:tm}{{6.6}{305}{Jendela diagram trimmed mean}{figure.6.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.2}Ukuran Sebaran Data}{306}{section.6.2}\protected@file@percent }
\newlabel{ukuran-sebaran-data}{{6.2}{306}{Ukuran Sebaran Data}{section.6.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.1}Pengukuran Klasik (Varian dan Simpangan Baku)}{306}{subsection.6.2.1}\protected@file@percent }
\newlabel{pengukuran-klasik-varian-dan-simpangan-baku}{{6.2.1}{306}{Pengukuran Klasik (Varian dan Simpangan Baku)}{subsection.6.2.1}{}}
\newlabel{eq:var}{{6.9}{306}{Pengukuran Klasik (Varian dan Simpangan Baku)}{equation.6.2.9}{}}
\newlabel{eq:sd}{{6.10}{306}{Pengukuran Klasik (Varian dan Simpangan Baku)}{equation.6.2.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.2}Ukuran Sebaran Data yang Resisten Terhadap Outlier}{308}{subsection.6.2.2}\protected@file@percent }
\newlabel{ukuran-sebaran-data-yang-resisten-terhadap-outlier}{{6.2.2}{308}{Ukuran Sebaran Data yang Resisten Terhadap Outlier}{subsection.6.2.2}{}}
\newlabel{eq:iqr}{{6.11}{308}{Ukuran Sebaran Data yang Resisten Terhadap Outlier}{equation.6.2.11}{}}
\newlabel{eq:mad}{{6.12}{309}{Ukuran Sebaran Data yang Resisten Terhadap Outlier}{equation.6.2.12}{}}
\newlabel{eq:mad2}{{6.13}{309}{Ukuran Sebaran Data yang Resisten Terhadap Outlier}{equation.6.2.13}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.3}Ringkasan Data Menggunakan Fungsi summary() dan stat.desc()}{310}{section.6.3}\protected@file@percent }
\newlabel{ringkasan-data-menggunakan-fungsi-summary-dan-stat.desc}{{6.3}{310}{Ringkasan Data Menggunakan Fungsi summary() dan stat.desc()}{section.6.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.7}{\ignorespaces a) Kemencengan negatif, b) Kemencengan positif.}}{312}{figure.6.7}\protected@file@percent }
\newlabel{fig:skew}{{6.7}{312}{a) Kemencengan negatif, b) Kemencengan positif}{figure.6.7}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.4}Ukuran Kemencengan Data}{312}{section.6.4}\protected@file@percent }
\newlabel{ukuran-kemencengan-data}{{6.4}{312}{Ukuran Kemencengan Data}{section.6.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.1}Ukuran Kemencengan Klasik}{312}{subsection.6.4.1}\protected@file@percent }
\newlabel{ukuran-kemencengan-klasik}{{6.4.1}{312}{Ukuran Kemencengan Klasik}{subsection.6.4.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.8}{\ignorespaces Box plot untuk data dengan a) Kemencengan negatif, b) Kemencengan positif.}}{313}{figure.6.8}\protected@file@percent }
\newlabel{fig:skew2}{{6.8}{313}{Box plot untuk data dengan a) Kemencengan negatif, b) Kemencengan positif}{figure.6.8}{}}
\newlabel{eq:g}{{6.14}{313}{Ukuran Kemencengan Klasik}{equation.6.4.14}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.2}Ukuran Kemencengan yang Resisten}{314}{subsection.6.4.2}\protected@file@percent }
\newlabel{ukuran-kemencengan-yang-resisten}{{6.4.2}{314}{Ukuran Kemencengan yang Resisten}{subsection.6.4.2}{}}
\newlabel{eq:qs}{{6.15}{314}{Ukuran Kemencengan yang Resisten}{equation.6.4.15}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.5}Outlier}{314}{section.6.5}\protected@file@percent }
\newlabel{outlier}{{6.5}{314}{Outlier}{section.6.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.6}Transformasi Data}{316}{section.6.6}\protected@file@percent }
\newlabel{transformasi-data-1}{{6.6}{316}{Transformasi Data}{section.6.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.9}{\ignorespaces Ladder of power}}{317}{figure.6.9}\protected@file@percent }
\newlabel{fig:power}{{6.9}{317}{Ladder of power}{figure.6.9}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.10}{\ignorespaces Visualisasi konsentrasi Uranium hasil tansformasi pada air tanah}}{318}{figure.6.10}\protected@file@percent }
\newlabel{fig:urantrans}{{6.10}{318}{Visualisasi konsentrasi Uranium hasil tansformasi pada air tanah}{figure.6.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.7}Referensi}{318}{section.6.7}\protected@file@percent }
\newlabel{referensi-5}{{6.7}{318}{Referensi}{section.6.7}{}}
\@writefile{lot}{\contentsline {table}{\numberline {6.2}{\ignorespaces Kosentrasi TDS dan Uranium dalam berbagai kondisi kesadahan}}{320}{table.6.2}\protected@file@percent }
\newlabel{tab:gwtdsur}{{6.2}{320}{Kosentrasi TDS dan Uranium dalam berbagai kondisi kesadahan}{table.6.2}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {7}Ekplorasi Data Menggunakan Grafik}{321}{chapter.7}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{ekplorasi-data-menggunakan-grafik}{{7}{321}{Ekplorasi Data Menggunakan Grafik}{chapter.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.1}{\ignorespaces Scatterplot dengan koefisien korelasi r=0,7.}}{322}{figure.7.1}\protected@file@percent }
\newlabel{fig:visscat}{{7.1}{322}{Scatterplot dengan koefisien korelasi r=0,7}{figure.7.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.1}Grafik Untuk Melihat Ditribusi Data}{323}{section.7.1}\protected@file@percent }
\newlabel{grafik-untuk-melihat-ditribusi-data}{{7.1}{323}{Grafik Untuk Melihat Ditribusi Data}{section.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.1}Histogram}{323}{subsection.7.1.1}\protected@file@percent }
\newlabel{histogram}{{7.1.1}{323}{Histogram}{subsection.7.1.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.2}{\ignorespaces Histogram dengan bin.width=default debit sungai Saddle}}{324}{figure.7.2}\protected@file@percent }
\newlabel{fig:histeda}{{7.2}{324}{Histogram dengan bin.width=default debit sungai Saddle}{figure.7.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.2}Density Plot}{324}{subsection.7.1.2}\protected@file@percent }
\newlabel{density-plot}{{7.1.2}{324}{Density Plot}{subsection.7.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.3}QQ-plot}{324}{subsection.7.1.3}\protected@file@percent }
\newlabel{qq-plot-2}{{7.1.3}{324}{QQ-plot}{subsection.7.1.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.3}{\ignorespaces Histogram dengan bin.width=500 debit sungai Saddle}}{325}{figure.7.3}\protected@file@percent }
\newlabel{fig:histeda2}{{7.3}{325}{Histogram dengan bin.width=500 debit sungai Saddle}{figure.7.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.4}{\ignorespaces Density plot debit sungai Saddle}}{325}{figure.7.4}\protected@file@percent }
\newlabel{fig:denseda}{{7.4}{325}{Density plot debit sungai Saddle}{figure.7.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.5}{\ignorespaces QQ plot debit sungai Saddle}}{326}{figure.7.5}\protected@file@percent }
\newlabel{fig:qqeda}{{7.5}{326}{QQ plot debit sungai Saddle}{figure.7.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.4}Box Plot dan Violin Plot}{326}{subsection.7.1.4}\protected@file@percent }
\newlabel{box-plot-dan-violin-plot-1}{{7.1.4}{326}{Box Plot dan Violin Plot}{subsection.7.1.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.6}{\ignorespaces Box plot dan violin plot debit sungai Saddle}}{327}{figure.7.6}\protected@file@percent }
\newlabel{fig:bpeda}{{7.6}{327}{Box plot dan violin plot debit sungai Saddle}{figure.7.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.2}Grafik Untuk Melihat Beda Distribusi Data Antar Grup}{327}{section.7.2}\protected@file@percent }
\newlabel{grafik-untuk-melihat-beda-distribusi-data-antar-grup}{{7.2}{327}{Grafik Untuk Melihat Beda Distribusi Data Antar Grup}{section.7.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.7}{\ignorespaces Box plot konsentrasi Atrazine pada bulan Juni dan September}}{329}{figure.7.7}\protected@file@percent }
\newlabel{fig:bpgeda}{{7.7}{329}{Box plot konsentrasi Atrazine pada bulan Juni dan September}{figure.7.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.8}{\ignorespaces Bar plot konsentrasi Atrazine pada bulan Juni dan September}}{330}{figure.7.8}\protected@file@percent }
\newlabel{fig:bargeda}{{7.8}{330}{Bar plot konsentrasi Atrazine pada bulan Juni dan September}{figure.7.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.3}Grafik Untuk Memvisualisasikan Korelasi Antar Variabel}{330}{section.7.3}\protected@file@percent }
\newlabel{grafik-untuk-memvisualisasikan-korelasi-antar-variabel}{{7.3}{330}{Grafik Untuk Memvisualisasikan Korelasi Antar Variabel}{section.7.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.9}{\ignorespaces Scatterplot hubungan antara konsentrasi TDS dan Uranium pada airtanah}}{331}{figure.7.9}\protected@file@percent }
\newlabel{fig:scateda}{{7.9}{331}{Scatterplot hubungan antara konsentrasi TDS dan Uranium pada airtanah}{figure.7.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.4}Grafik Yang Digunakan Untuk Memvisualisasikan Asosiasi Antar Variabel}{331}{section.7.4}\protected@file@percent }
\newlabel{grafik-yang-digunakan-untuk-memvisualisasikan-asosiasi-antar-variabel}{{7.4}{331}{Grafik Yang Digunakan Untuk Memvisualisasikan Asosiasi Antar Variabel}{section.7.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.10}{\ignorespaces Bar plot Jumlah rata-rata corbicula pada sungai Tennessee}}{332}{figure.7.10}\protected@file@percent }
\newlabel{fig:barteneda}{{7.10}{332}{Bar plot Jumlah rata-rata corbicula pada sungai Tennessee}{figure.7.10}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.11}{\ignorespaces Line plot perubahan jumlah rata-rata corbicula di sungai Tennessee}}{333}{figure.7.11}\protected@file@percent }
\newlabel{fig:lineeda}{{7.11}{333}{Line plot perubahan jumlah rata-rata corbicula di sungai Tennessee}{figure.7.11}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.5}Grafik Yang Digunakan Untuk Memisualisasikan Ukuran Sampel dan Perubahan Sepanjang Waktu}{333}{section.7.5}\protected@file@percent }
\newlabel{grafik-yang-digunakan-untuk-memisualisasikan-ukuran-sampel-dan-perubahan-sepanjang-waktu}{{7.5}{333}{Grafik Yang Digunakan Untuk Memisualisasikan Ukuran Sampel dan Perubahan Sepanjang Waktu}{section.7.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.6}Referensi}{333}{section.7.6}\protected@file@percent }
\newlabel{referensi-6}{{7.6}{333}{Referensi}{section.7.6}{}}
\newlabel{part-probabilitas-dan-distribusi-probabilitas}{{7.6}{337}{Probabilitas dan Distribusi Probabilitas}{part*.8}{}}
\@writefile{toc}{\contentsline {part}{Probabilitas dan Distribusi Probabilitas}{337}{part*.8}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {8}Probabilitas}{337}{chapter.8}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{probabilitas}{{8}{337}{Probabilitas}{chapter.8}{}}
\newlabel{eq:prob}{{8.1}{337}{Probabilitas}{equation.8.0.1}{}}
\newlabel{eq:prob2}{{8.2}{337}{Probabilitas}{equation.8.0.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.1}Aturan Dasar Probabilitas}{338}{section.8.1}\protected@file@percent }
\newlabel{aturan-dasar-probabilitas}{{8.1}{338}{Aturan Dasar Probabilitas}{section.8.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.1}Peristiwa \emph {Mutually Exclusive}}{340}{subsection.8.1.1}\protected@file@percent }
\newlabel{peristiwa-mutually-exclusive}{{8.1.1}{340}{\texorpdfstring {Peristiwa \emph {Mutually Exclusive}}{Peristiwa Mutually Exclusive}}{subsection.8.1.1}{}}
\newlabel{eq:pme}{{8.3}{340}{\texorpdfstring {Peristiwa \emph {Mutually Exclusive}}{Peristiwa Mutually Exclusive}}{equation.8.1.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.1}{\ignorespaces Diagram venn peristiwa mutually exclusive}}{341}{figure.8.1}\protected@file@percent }
\newlabel{fig:pmevis}{{8.1}{341}{Diagram venn peristiwa mutually exclusive}{figure.8.1}{}}
\newlabel{eq:pme2}{{8.4}{342}{\texorpdfstring {Peristiwa \emph {Mutually Exclusive}}{Peristiwa Mutually Exclusive}}{equation.8.1.4}{}}
\newlabel{eq:pme3}{{8.5}{342}{\texorpdfstring {Peristiwa \emph {Mutually Exclusive}}{Peristiwa Mutually Exclusive}}{equation.8.1.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.2}Peristiwa \emph {Not Mutually Exclusive}}{342}{subsection.8.1.2}\protected@file@percent }
\newlabel{peristiwa-not-mutually-exclusive}{{8.1.2}{342}{\texorpdfstring {Peristiwa \emph {Not Mutually Exclusive}}{Peristiwa Not Mutually Exclusive}}{subsection.8.1.2}{}}
\newlabel{eq:pnme}{{8.6}{342}{\texorpdfstring {Peristiwa \emph {Not Mutually Exclusive}}{Peristiwa Not Mutually Exclusive}}{equation.8.1.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.2}{\ignorespaces Diagram venn peristiwa not mutually exclusive}}{343}{figure.8.2}\protected@file@percent }
\newlabel{fig:pnmevis}{{8.2}{343}{Diagram venn peristiwa not mutually exclusive}{figure.8.2}{}}
\newlabel{eq:pnme2}{{8.7}{344}{\texorpdfstring {Peristiwa \emph {Not Mutually Exclusive}}{Peristiwa Not Mutually Exclusive}}{equation.8.1.7}{}}
\gdef \LT@vii {\LT@entry
{1}{77.38002pt}\LT@entry
{1}{50.31001pt}\LT@entry
{1}{86.75002pt}\LT@entry
{1}{32.04002pt}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.3}Peristiwa \emph {Dependent}}{345}{subsection.8.1.3}\protected@file@percent }
\newlabel{peristiwa-dependent}{{8.1.3}{345}{\texorpdfstring {Peristiwa \emph {Dependent}}{Peristiwa Dependent}}{subsection.8.1.3}{}}
\newlabel{eq:pd}{{8.8}{345}{\texorpdfstring {Peristiwa \emph {Dependent}}{Peristiwa Dependent}}{equation.8.1.8}{}}
\newlabel{tab:tabpd}{{8.1}{345}{\texorpdfstring {Peristiwa \emph {Dependent}}{Peristiwa Dependent}}{table.8.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {8.1}{ Populasi orang yang telah menyelesaikan masa studinya di suatu kota.}}{345}{table.8.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.4}Peristiwa \emph {Independent}}{347}{subsection.8.1.4}\protected@file@percent }
\newlabel{peristiwa-independent}{{8.1.4}{347}{\texorpdfstring {Peristiwa \emph {Independent}}{Peristiwa Independent}}{subsection.8.1.4}{}}
\newlabel{eq:pi}{{8.9}{347}{\texorpdfstring {Peristiwa \emph {Independent}}{Peristiwa Independent}}{equation.8.1.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.2}Teori Bayes}{348}{section.8.2}\protected@file@percent }
\newlabel{teori-bayes}{{8.2}{348}{Teori Bayes}{section.8.2}{}}
\newlabel{eq:tb}{{8.10}{348}{Teori Bayes}{equation.8.2.10}{}}
\newlabel{eq:tb2}{{8.11}{348}{Teori Bayes}{equation.8.2.11}{}}
\newlabel{eq:tb3}{{8.12}{348}{Teori Bayes}{equation.8.2.12}{}}
\newlabel{eq:tb4}{{8.13}{348}{Teori Bayes}{equation.8.2.13}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.3}Ekspektasi Matematis}{349}{section.8.3}\protected@file@percent }
\newlabel{ekspektasi-matematis}{{8.3}{349}{Ekspektasi Matematis}{section.8.3}{}}
\newlabel{eq:em}{{8.14}{349}{Ekspektasi Matematis}{equation.8.3.14}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.4}Referensi}{350}{section.8.4}\protected@file@percent }
\newlabel{referensi-7}{{8.4}{350}{Referensi}{section.8.4}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {9}Distribusi Probabilitas}{351}{chapter.9}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{distribusi-probabilitas}{{9}{351}{Distribusi Probabilitas}{chapter.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.1}Properti Umum dari Distribusi Probabilitas}{351}{section.9.1}\protected@file@percent }
\newlabel{properti-umum-dari-distribusi-probabilitas}{{9.1}{351}{Properti Umum dari Distribusi Probabilitas}{section.9.1}{}}
\newlabel{eq:pudbp}{{9.1}{351}{Properti Umum dari Distribusi Probabilitas}{equation.9.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.2}Distribusi Binomial dan Multinomial}{352}{section.9.2}\protected@file@percent }
\newlabel{distribusi-binomial-dan-multinomial}{{9.2}{352}{Distribusi Binomial dan Multinomial}{section.9.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.1}Distribusi Binomial}{353}{subsection.9.2.1}\protected@file@percent }
\newlabel{distribusi-binomial}{{9.2.1}{353}{Distribusi Binomial}{subsection.9.2.1}{}}
\newlabel{eq:dbinom}{{9.2}{353}{Distribusi Binomial}{equation.9.2.2}{}}
\newlabel{eq:dbinom2}{{9.3}{353}{Distribusi Binomial}{equation.9.2.3}{}}
\newlabel{eq:dbinom3}{{9.4}{354}{Distribusi Binomial}{equation.9.2.4}{}}
\newlabel{eq:dbinom4}{{9.5}{356}{Distribusi Binomial}{equation.9.2.5}{}}
\newlabel{eq:dbinom5}{{9.6}{356}{Distribusi Binomial}{equation.9.2.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.2}Multinomial Eksperimen dan Distribusi Multinomial}{356}{subsection.9.2.2}\protected@file@percent }
\newlabel{multinomial-eksperimen-dan-distribusi-multinomial}{{9.2.2}{356}{Multinomial Eksperimen dan Distribusi Multinomial}{subsection.9.2.2}{}}
\newlabel{eq:dmultinom}{{9.7}{357}{Multinomial Eksperimen dan Distribusi Multinomial}{equation.9.2.7}{}}
\newlabel{eq:dmultinom2}{{9.8}{357}{Multinomial Eksperimen dan Distribusi Multinomial}{equation.9.2.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.3}Distribusi Hipergeometris}{358}{section.9.3}\protected@file@percent }
\newlabel{distribusi-hipergeometris}{{9.3}{358}{Distribusi Hipergeometris}{section.9.3}{}}
\newlabel{eq:dhiper}{{9.9}{359}{Distribusi Hipergeometris}{equation.9.3.9}{}}
\newlabel{eq:dhiper2}{{9.10}{360}{Distribusi Hipergeometris}{equation.9.3.10}{}}
\newlabel{eq:dhiper3}{{9.11}{361}{Distribusi Hipergeometris}{equation.9.3.11}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.4}Distribusi Binomial Negatif dan Distribusi Geometris}{361}{section.9.4}\protected@file@percent }
\newlabel{distribusi-binomial-negatif-dan-distribusi-geometris}{{9.4}{361}{Distribusi Binomial Negatif dan Distribusi Geometris}{section.9.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.4.1}Distribusi Binomial Negatif}{362}{subsection.9.4.1}\protected@file@percent }
\newlabel{distribusi-binomial-negatif}{{9.4.1}{362}{Distribusi Binomial Negatif}{subsection.9.4.1}{}}
\newlabel{eq:dnegbinom}{{9.12}{363}{Distribusi Binomial Negatif}{equation.9.4.12}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.4.2}Distribusi Geometris}{365}{subsection.9.4.2}\protected@file@percent }
\newlabel{distribusi-geometris}{{9.4.2}{365}{Distribusi Geometris}{subsection.9.4.2}{}}
\newlabel{eq:dgeom}{{9.13}{365}{Distribusi Geometris}{equation.9.4.13}{}}
\newlabel{eq:dgeom2}{{9.14}{366}{Distribusi Geometris}{equation.9.4.14}{}}
\newlabel{eq:dgeom3}{{9.15}{367}{Distribusi Geometris}{equation.9.4.15}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.5}Distribusi Poisson}{367}{section.9.5}\protected@file@percent }
\newlabel{distribusi-poisson}{{9.5}{367}{Distribusi Poisson}{section.9.5}{}}
\newlabel{eq:dpoisson}{{9.16}{367}{Distribusi Poisson}{equation.9.5.16}{}}
\newlabel{eq:dpoisson2}{{9.17}{367}{Distribusi Poisson}{equation.9.5.17}{}}
\newlabel{eq:dpoisson3}{{9.18}{368}{Distribusi Poisson}{equation.9.5.18}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.6}Distribusi Uniform}{369}{section.9.6}\protected@file@percent }
\newlabel{distribusi-uniform}{{9.6}{369}{Distribusi Uniform}{section.9.6}{}}
\newlabel{eq:duniform}{{9.19}{369}{Distribusi Uniform}{equation.9.6.19}{}}
\newlabel{eq:duniform2}{{9.20}{369}{Distribusi Uniform}{equation.9.6.20}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1}{\ignorespaces Distribusi uniform dengan nilai min 1 dan max 3}}{370}{figure.9.1}\protected@file@percent }
\newlabel{fig:uniformvis}{{9.1}{370}{Distribusi uniform dengan nilai min 1 dan max 3}{figure.9.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2}{\ignorespaces Probabilitas distribusi uniform pada rentang nilai x 3 sampai 4}}{371}{figure.9.2}\protected@file@percent }
\newlabel{fig:uniformvis2}{{9.2}{371}{Probabilitas distribusi uniform pada rentang nilai x 3 sampai 4}{figure.9.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.7}Distribusi Normal}{371}{section.9.7}\protected@file@percent }
\newlabel{distribusi-normal}{{9.7}{371}{Distribusi Normal}{section.9.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.3}{\ignorespaces Distribusi normal dengan nilai mean sama dan simpangan baku berbeda.}}{372}{figure.9.3}\protected@file@percent }
\newlabel{fig:normvis}{{9.3}{372}{Distribusi normal dengan nilai mean sama dan simpangan baku berbeda}{figure.9.3}{}}
\newlabel{eq:dnorm}{{9.21}{372}{Distribusi Normal}{equation.9.7.21}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4}{\ignorespaces Distribusi normal dengan nilai mean sama dan simpangan baku berbeda.}}{373}{figure.9.4}\protected@file@percent }
\newlabel{fig:normvis2}{{9.4}{373}{Distribusi normal dengan nilai mean sama dan simpangan baku berbeda}{figure.9.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.5}{\ignorespaces Distribusi normal dengan nilai mean berbeda dan simpangan baku berbeda.}}{373}{figure.9.5}\protected@file@percent }
\newlabel{fig:normvis3}{{9.5}{373}{Distribusi normal dengan nilai mean berbeda dan simpangan baku berbeda}{figure.9.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.7.1}Luas Area Di Bawah Kurva Normal}{374}{subsection.9.7.1}\protected@file@percent }
\newlabel{luas-area-di-bawah-kurva-normal}{{9.7.1}{374}{Luas Area Di Bawah Kurva Normal}{subsection.9.7.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.6}{\ignorespaces Luas area di bawah kurva normal.}}{375}{figure.9.6}\protected@file@percent }
\newlabel{fig:normvis4}{{9.6}{375}{Luas area di bawah kurva normal}{figure.9.6}{}}
\newlabel{eq:dnorm2}{{9.22}{375}{Luas Area Di Bawah Kurva Normal}{equation.9.7.22}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.7}{\ignorespaces Luas area masa layan lampu antara 750 sampai 830 jam.}}{376}{figure.9.7}\protected@file@percent }
\newlabel{fig:normvis5}{{9.7}{376}{Luas area masa layan lampu antara 750 sampai 830 jam}{figure.9.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.8}{\ignorespaces Luas area masa layan lampu lebih dari atau sama dengan 830 jam.}}{377}{figure.9.8}\protected@file@percent }
\newlabel{fig:normvis6}{{9.8}{377}{Luas area masa layan lampu lebih dari atau sama dengan 830 jam}{figure.9.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.7.2}Uji Kecocokan Distribusi Normal}{378}{subsection.9.7.2}\protected@file@percent }
\newlabel{uji-kecocokan-distribusi-normal}{{9.7.2}{378}{Uji Kecocokan Distribusi Normal}{subsection.9.7.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.9}{\ignorespaces Visualisasi distribusi konsentrasi ozon Kota New York a)density plot, b)boxplot, c)ecdf, d)qq-plot}}{380}{figure.9.9}\protected@file@percent }
\newlabel{fig:normvis7}{{9.9}{380}{Visualisasi distribusi konsentrasi ozon Kota New York a)density plot, b)boxplot, c)ecdf, d)qq-plot}{figure.9.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.7.3}Pendekatan Distribusi Binomial Menggunakan Distribusi Normal}{381}{subsection.9.7.3}\protected@file@percent }
\newlabel{pendekatan-distribusi-binomial-menggunakan-distribusi-normal}{{9.7.3}{381}{Pendekatan Distribusi Binomial Menggunakan Distribusi Normal}{subsection.9.7.3}{}}
\newlabel{eq:dnorm3}{{9.23}{381}{Pendekatan Distribusi Binomial Menggunakan Distribusi Normal}{equation.9.7.23}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.10}{\ignorespaces Luas area jumlah pompa rusak kurang dari 30.}}{382}{figure.9.10}\protected@file@percent }
\newlabel{fig:normvis8}{{9.10}{382}{Luas area jumlah pompa rusak kurang dari 30}{figure.9.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.8}Distribusi Gamma dan Eksponensial}{382}{section.9.8}\protected@file@percent }
\newlabel{distribusi-gamma-dan-eksponensial}{{9.8}{382}{Distribusi Gamma dan Eksponensial}{section.9.8}{}}
\newlabel{eq:dgamma}{{9.24}{383}{Distribusi Gamma dan Eksponensial}{equation.9.8.24}{}}
\newlabel{eq:dgamma2}{{9.25}{383}{Distribusi Gamma dan Eksponensial}{equation.9.8.25}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.11}{\ignorespaces Visualisasi distribusi gamma dengan variasi alpha dengan beta 1 a) density plot, b)ecdf}}{384}{figure.9.11}\protected@file@percent }
\newlabel{fig:gammavis}{{9.11}{384}{Visualisasi distribusi gamma dengan variasi alpha dengan beta 1 a) density plot, b)ecdf}{figure.9.11}{}}
\newlabel{eq:deksponen}{{9.26}{384}{Distribusi Gamma dan Eksponensial}{equation.9.8.26}{}}
\newlabel{eq:dgamma3}{{9.27}{384}{Distribusi Gamma dan Eksponensial}{equation.9.8.27}{}}
\newlabel{eq:deksponen2}{{9.28}{384}{Distribusi Gamma dan Eksponensial}{equation.9.8.28}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.9}Distribusi Chi-Square, Student's t, dan Snedecor's F.}{387}{section.9.9}\protected@file@percent }
\newlabel{distribusi-chi-square-students-t-dan-snedecors-f.}{{9.9}{387}{Distribusi Chi-Square, Student's t, dan Snedecor's F}{section.9.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.9.1}Distribusi Chi-Square}{387}{subsection.9.9.1}\protected@file@percent }
\newlabel{distribusi-chi-square}{{9.9.1}{387}{Distribusi Chi-Square}{subsection.9.9.1}{}}
\newlabel{eq:dcsq}{{9.29}{387}{Distribusi Chi-Square}{equation.9.9.29}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.12}{\ignorespaces Visualisasi distribusi chi-square dengan variasi derajat kebebasan a) density plot, b)ecdf}}{388}{figure.9.12}\protected@file@percent }
\newlabel{fig:csqvis}{{9.12}{388}{Visualisasi distribusi chi-square dengan variasi derajat kebebasan a) density plot, b)ecdf}{figure.9.12}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.9.2}Distribusi Student's t}{389}{subsection.9.9.2}\protected@file@percent }
\newlabel{distribusi-students-t}{{9.9.2}{389}{Distribusi Student's t}{subsection.9.9.2}{}}
\newlabel{eq:dst}{{9.30}{389}{Distribusi Student's t}{equation.9.9.30}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.13}{\ignorespaces Visualisasi distribusi t dengan variasi derajat kebebasan a) density plot, b)ecdf}}{390}{figure.9.13}\protected@file@percent }
\newlabel{fig:dtvis}{{9.13}{390}{Visualisasi distribusi t dengan variasi derajat kebebasan a) density plot, b)ecdf}{figure.9.13}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.9.3}Distribusi Snedecor's F}{390}{subsection.9.9.3}\protected@file@percent }
\newlabel{distribusi-snedecors-f}{{9.9.3}{390}{Distribusi Snedecor's F}{subsection.9.9.3}{}}
\newlabel{eq:dF}{{9.31}{390}{Distribusi Snedecor's F}{equation.9.9.31}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.14}{\ignorespaces Visualisasi distribusi F dengan variasi derajat kebebasan a) density plot, b)ecdf}}{392}{figure.9.14}\protected@file@percent }
\newlabel{fig:dFvis}{{9.14}{392}{Visualisasi distribusi F dengan variasi derajat kebebasan a) density plot, b)ecdf}{figure.9.14}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.10}Distribusi Kontinu Lainnya}{392}{section.9.10}\protected@file@percent }
\newlabel{distribusi-kontinu-lainnya}{{9.10}{392}{Distribusi Kontinu Lainnya}{section.9.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.10.1}Distribusi Beta}{392}{subsection.9.10.1}\protected@file@percent }
\newlabel{distribusi-beta}{{9.10.1}{392}{Distribusi Beta}{subsection.9.10.1}{}}
\newlabel{eq:dbeta}{{9.32}{392}{Distribusi Beta}{equation.9.10.32}{}}
\newlabel{eq:dbeta2}{{9.33}{392}{Distribusi Beta}{equation.9.10.33}{}}
\newlabel{eq:dbeta3}{{9.34}{392}{Distribusi Beta}{equation.9.10.34}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.15}{\ignorespaces Visualisasi distribusi beta dengan variasi derajat kebebasan a) density plot, b)ecdf}}{394}{figure.9.15}\protected@file@percent }
\newlabel{fig:dbeta}{{9.15}{394}{Visualisasi distribusi beta dengan variasi derajat kebebasan a) density plot, b)ecdf}{figure.9.15}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.10.2}Distribusi Lognormal}{394}{subsection.9.10.2}\protected@file@percent }
\newlabel{distribusi-lognormal}{{9.10.2}{394}{Distribusi Lognormal}{subsection.9.10.2}{}}
\newlabel{eq:dlognormal}{{9.35}{394}{Distribusi Lognormal}{equation.9.10.35}{}}
\newlabel{eq:dlognormal2}{{9.36}{394}{Distribusi Lognormal}{equation.9.10.36}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.16}{\ignorespaces Visualisasi distribusi beta dengan variasi mean dan sd a) density plot, b)ecdf}}{396}{figure.9.16}\protected@file@percent }
\newlabel{fig:dlognnormalvis}{{9.16}{396}{Visualisasi distribusi beta dengan variasi mean dan sd a) density plot, b)ecdf}{figure.9.16}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.10.3}Distribusi Cauchy}{396}{subsection.9.10.3}\protected@file@percent }
\newlabel{distribusi-cauchy}{{9.10.3}{396}{Distribusi Cauchy}{subsection.9.10.3}{}}
\newlabel{eq:dcauchy}{{9.37}{396}{Distribusi Cauchy}{equation.9.10.37}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.17}{\ignorespaces Visualisasi distribusi t dengan variasi m dan beta a) density plot, b)ecdf}}{397}{figure.9.17}\protected@file@percent }
\newlabel{fig:dcauchyvis}{{9.17}{397}{Visualisasi distribusi t dengan variasi m dan beta a) density plot, b)ecdf}{figure.9.17}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.10.4}Distribusi Logistik}{398}{subsection.9.10.4}\protected@file@percent }
\newlabel{distribusi-logistik}{{9.10.4}{398}{Distribusi Logistik}{subsection.9.10.4}{}}
\newlabel{eq:dlogistik}{{9.38}{398}{Distribusi Logistik}{equation.9.10.38}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.18}{\ignorespaces Visualisasi distribusi logistik dengan variasi mean dan simpangan baku, a) density plot, b)ecdf}}{399}{figure.9.18}\protected@file@percent }
\newlabel{fig:dlogistikvis}{{9.18}{399}{Visualisasi distribusi logistik dengan variasi mean dan simpangan baku, a) density plot, b)ecdf}{figure.9.18}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.10.5}Distribusi Weibull}{400}{subsection.9.10.5}\protected@file@percent }
\newlabel{distribusi-weibull}{{9.10.5}{400}{Distribusi Weibull}{subsection.9.10.5}{}}
\newlabel{eq:dweibull}{{9.39}{400}{Distribusi Weibull}{equation.9.10.39}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.19}{\ignorespaces Visualisasi distribusi weibull dengan variasi alpha dengan beta 1 a) density plot, b)ecdf}}{401}{figure.9.19}\protected@file@percent }
\newlabel{fig:weibullvis}{{9.19}{401}{Visualisasi distribusi weibull dengan variasi alpha dengan beta 1 a) density plot, b)ecdf}{figure.9.19}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.11}Referensi}{401}{section.9.11}\protected@file@percent }
\newlabel{referensi-8}{{9.11}{401}{Referensi}{section.9.11}{}}
\newlabel{part-statistika-inferensial---r}{{9.11}{405}{Statistika Inferensial - R}{part*.9}{}}
\@writefile{toc}{\contentsline {part}{Statistika Inferensial - R}{405}{part*.9}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {10}Penaksiran Secara Statistika}{405}{chapter.10}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{penaksiran-secara-statistika}{{10}{405}{Penaksiran Secara Statistika}{chapter.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.1}Definisi Interval Estimasi}{405}{section.10.1}\protected@file@percent }
\newlabel{definisi-interval-estimasi}{{10.1}{405}{Definisi Interval Estimasi}{section.10.1}{}}
\gdef \LT@viii {\LT@entry
{1}{23.94002pt}\LT@entry
{3}{22.00002pt}\LT@entry
{1}{40.17001pt}\LT@entry
{1}{46.21002pt}\LT@entry
{1}{135.30002pt}}
\@writefile{toc}{\contentsline {section}{\numberline {10.2}Interpretasi Interval Estimasi}{406}{section.10.2}\protected@file@percent }
\newlabel{interpretasi-interval-estimasi}{{10.2}{406}{Interpretasi Interval Estimasi}{section.10.2}{}}
\newlabel{tab:iie}{{10.1}{406}{Interpretasi Interval Estimasi}{table.10.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {10.1}{ Sepuluh interval kepercayaan 90\% sekitar nilai mean sebenarnya sebesar 10 (Data berdistribusi normal dan Tanda plus menyatakan data tidak disertakan dalam nilai mean sebenarnya)}}{406}{table.10.1}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {10.1}{\ignorespaces Sepuluh interval kepercayaan 90 persen data dengan nilai mean sebenarnya 10 (Helsel dan Hirsch, 2002)}}{407}{figure.10.1}\protected@file@percent }
\newlabel{fig:iievis}{{10.1}{407}{Sepuluh interval kepercayaan 90 persen data dengan nilai mean sebenarnya 10 (Helsel dan Hirsch, 2002)}{figure.10.1}{}}
\newlabel{eq:alpha}{{10.1}{407}{Interpretasi Interval Estimasi}{equation.10.2.1}{}}
\gdef \LT@ix {\LT@entry
{1}{23.94002pt}\LT@entry
{3}{22.00002pt}\LT@entry
{1}{40.17001pt}\LT@entry
{1}{46.21002pt}\LT@entry
{1}{135.30002pt}}
\newlabel{tab:iie2}{{10.2}{408}{Interpretasi Interval Estimasi}{table.10.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {10.2}{ Sepuluh interval kepercayaan 90\% sekitar nilai mean sebenarnya sebesar 1 (Data tidak berdistribusi normal dan Tanda plus menyatakan data tidak disertakan dalam nilai mean sebenarnya)}}{408}{table.10.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {10.3}Interval Kepercayaan Median}{408}{section.10.3}\protected@file@percent }
\newlabel{interval-kepercayaan-median}{{10.3}{408}{Interval Kepercayaan Median}{section.10.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2}{\ignorespaces Histogram data dengan nilai mean populasi 1 dan simpangan baku populasi 0.75 (Helsel dan Hirsch, 2002)}}{409}{figure.10.2}\protected@file@percent }
\newlabel{fig:iiedata}{{10.2}{409}{Histogram data dengan nilai mean populasi 1 dan simpangan baku populasi 0.75 (Helsel dan Hirsch, 2002)}{figure.10.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3}{\ignorespaces Sepuluh interval kepercayaan 90 persen data dengan nilai mean sebenarnya (Helsel dan Hirsch, 2002)}}{409}{figure.10.3}\protected@file@percent }
\newlabel{fig:iievis2}{{10.3}{409}{Sepuluh interval kepercayaan 90 persen data dengan nilai mean sebenarnya (Helsel dan Hirsch, 2002)}{figure.10.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.4}{\ignorespaces Probabilitas median populasi P50 pada dua sisi interval estimasi (Helsel dan Hirsch, 2002)}}{410}{figure.10.4}\protected@file@percent }
\newlabel{fig:iemednp}{{10.4}{410}{Probabilitas median populasi P50 pada dua sisi interval estimasi (Helsel dan Hirsch, 2002)}{figure.10.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.3.1}Interval Estimasi Median Metode Nonparametrik}{410}{subsection.10.3.1}\protected@file@percent }
\newlabel{interval-estimasi-median-metode-nonparametrik}{{10.3.1}{410}{Interval Estimasi Median Metode Nonparametrik}{subsection.10.3.1}{}}
\newlabel{eq:rl}{{10.2}{410}{Interval Estimasi Median Metode Nonparametrik}{equation.10.3.2}{}}
\newlabel{eq:ru}{{10.3}{410}{Interval Estimasi Median Metode Nonparametrik}{equation.10.3.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {10.3}{\ignorespaces Konsentrasi Arsenik dalam air tanah (ppb)}}{411}{table.10.3}\protected@file@percent }
\newlabel{tab:gwardat}{{10.3}{411}{Konsentrasi Arsenik dalam air tanah (ppb)}{table.10.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.5}{\ignorespaces Distribusi konsentrasi arsenik dalam air tanah}}{412}{figure.10.5}\protected@file@percent }
\newlabel{fig:gwardatvis}{{10.5}{412}{Distribusi konsentrasi arsenik dalam air tanah}{figure.10.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.6}{\ignorespaces Lokasi probabilitas x berdasarkan tabel distribusi binomial}}{412}{figure.10.6}\protected@file@percent }
\newlabel{fig:tabbinom}{{10.6}{412}{Lokasi probabilitas x berdasarkan tabel distribusi binomial}{figure.10.6}{}}
\newlabel{eq:rlz}{{10.4}{414}{Interval Estimasi Median Metode Nonparametrik}{equation.10.3.4}{}}
\newlabel{eq:ruz}{{10.5}{414}{Interval Estimasi Median Metode Nonparametrik}{equation.10.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.3.2}Metode Parametrik Interval Estimasi Median}{418}{subsection.10.3.2}\protected@file@percent }
\newlabel{metode-parametrik-interval-estimasi-median}{{10.3.2}{418}{Metode Parametrik Interval Estimasi Median}{subsection.10.3.2}{}}
\newlabel{eq:gmci}{{10.6}{418}{Metode Parametrik Interval Estimasi Median}{equation.10.3.6}{}}
\newlabel{eq:gmci2}{{10.7}{418}{Metode Parametrik Interval Estimasi Median}{equation.10.3.7}{}}
\@writefile{lot}{\contentsline {table}{\numberline {10.4}{\ignorespaces Tranformasi logaritmik konsentrasi Arsenik dalam air tanah (ppb)}}{419}{table.10.4}\protected@file@percent }
\newlabel{tab:gwardat2}{{10.4}{419}{Tranformasi logaritmik konsentrasi Arsenik dalam air tanah (ppb)}{table.10.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.7}{\ignorespaces Distribusi logaritmik konsentrasi arsenik dalam air tanah}}{420}{figure.10.7}\protected@file@percent }
\newlabel{fig:gwardatvis2}{{10.7}{420}{Distribusi logaritmik konsentrasi arsenik dalam air tanah}{figure.10.7}{}}