the graphical display of information metode grafik untuk ... 10 agregasi data.pdf · internal...

23
Tim Dosen: Dr. Farit Muhammad Affendi Dr. Agus M Soleh STK 572 Manajemen Data Statistik 2016

Upload: trandien

Post on 11-May-2019

214 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Tim Dosen:

Dr. Farit Muhammad Affendi

Dr. Agus M Soleh

STK 572Manajemen Data Statistik

2016

Page 2: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Agregasi Data

Dr. Agus M Soleh

[email protected]

2

Page 3: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Kegunaan

• Memberikan deskripsi data

• Identifikasi dari anomali data

• Tahapan validasi dan verifikasi data

Page 4: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

PROC TABULATE• PROC TABULATE merupakan prosedur yang digunakan

untuk menampilkan statistic deskriptif dalam bentuktabular.

• SyntaxPROC TABULATE <options>;CLASS variables < / options>;VAR variables < / options>;TABLE <page> ,<row> ,column< / options> ;… other statements … ;RUN;

Page 5: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Option PROC TABULATE

Page 6: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Option VAR Statement

Page 7: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Option TABLE Statement

Page 8: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Tabel Satu Dimensi

PROC TABULATE DATA=data;

VAR Income;

TABLE Income;

RUN;

Page 9: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Tabel Satu Dimensi

• Menambahkan Statistik:

PROC TABULATE DATA=data;

VAR Income;

TABLE Income*(N Mean);

RUN;

Page 10: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

CLASS STATEMENT

• Mendeskripsikan berdasarkan kategori

• Mirip dengan VAR

Page 11: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Option CLASS Statements

Page 12: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

CLASS Statements

Page 13: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Tabel Dua Dimensi

Page 14: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Menambahkan Statistik

Page 15: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Menambahkan Total dan Sub Total

Page 16: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted
Page 17: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Menambahkan Label

Page 18: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Menyembunyikan Label

Page 19: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Tabel Tiga Dimensi

Page 20: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Persentase

• PCTN, ROWPCTN, COLPCTN

Page 21: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Persentase

Page 22: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

MISSING VALUE

• Gunakan opsi MISSING dalam PROC TABULATE atau CLASS

Page 23: The Graphical Display of Information Metode Grafik untuk ... 10 Agregasi Data.pdf · Internal (default) — use actual values in data Data — same order the data is already sorted

Selesai