inparametric.com

GNU/Linux | Behavior | Higher Education | SPSS | Statistics |




Category: Statistics

Pengantar QTAFI

11 March, 2008 (19:08) | Education, Statistics | By: Bhina Patria

QTAFI (Questions, Tables and Figures) adalah suatu aplikasi yang dikembangkan untuk mempermudah pelaksanaan survey. Dengan QTAFI kita bisa dengan mudah membuat kuisioner, membuat lembar data di SPSS dan mempermudah proses analisis data dengan SPSS. Aplikasi ini sangat cocok bagi mahasiswa yang akan membuat kuisioner ataupun fakultas atau universitas yang akan mengadakan survey penelusuran alumni (graduate survey atau tracer study).

QTAFI adalah aplikasi yang berbasis makro. Bentuk aplikasi ini berupa file dokumen berekstensi doc (seperti dokumen yang biasa kita buat lewat MS Word), hanya saja terkandung makro QTAFI di dalamnya. Untuk menjalankan aplikasi ini tentu saja MS Word harus sudah terpasang di komputer kita.

Saya mulai menggunakan aplikasi ini sejak tahun 2003, pada waktu itu aplikasi ini membantu pelaksanaan survey penelusuran alumni di UGM. Sejak saat itu saya terlibat dalam pengembangan QTAFI dan online.QTAFI (QTAFI berbasis web) walaupun hanya sebagai tester setia :D. Sampai saat ini pengembangan aplikasi ini terus berlanjut, terutama untuk versi online yang sudah sampai pada versi 2. Saat ini puluhan online survey secara bersamaan berjalan di server online.QTAFI2.

Read more »

Factor Analysis on the Characteristics of Occupation

26 January, 2008 (23:25) | English, Statistics, Psychology | By: Bhina Patria

This article is basically ripped off from Field’s Discovering Statistics Using SPSS for Windows with some minor subjective interpretation from me. So if you have access to the book just read it instead of this article. It is really a good book for you who want to learn SPSS and statistics. Highly recommended book :D !

Factor analysis was first used in 1904 by Charles Spearman, a Psychologist
from United Kingdom. Spearman used factor analysis in his models of human
intelligence. With factor analysis he developed theory that variety of cognitive test
could all be explained by one single factor which called g factor. Later on Raymond
Cattell, psychologist from US, used factor analysis in most of his research on
intelligence which lead to the development of his theory on Fluid and Crystallized
Intelligence. 16 Personality Factor (16PF) test is also one of Raymond Cattell’s
research results based on factor analysis.

Factor analysis is quiet different to other statistical analysis method. Many
statistical analysis methods are used to investigate the relation between
independent and dependent variables. In contrast, factor analysis is used to study
the patterns of relationship among many dependent variables, with the goal of
discovering something about the nature of independent variables that affect them.
The tricky part is that those independent variables were not measure directly. Thus
answers obtained by factor analysis are necessarily more hypothetical and tentative
than is true when independent variables are observed directly (Darlington, 1997).

Factor analysis in psychology is most often associated with intelligence
research. Nevertheless, the use of factor analysis can be observed in other domain
of psychology such as personality, attitudes, etc. The trait theorists in psychology
have been used factor analysis to measure personality traits. The Extraversion-
Introversion and the Neuroticism traits by Eysenck and 16 Personality Factor
questionnaires (16 PF) by Cattell are some of the examples of implementation of
Factor Analysis (Field, 2000). Furthermore, factor analysis is used widely in other
social sciences, education, business fields, biological science, etc.


Read more »

Mentransfer data dari SPSS ke R

2 November, 2007 (22:24) | Statistics | By: Bhina Patria

Cara paling mudah untuk mentransfer data dari SPSS ataupun aplikasi lainnya ke R adalah dengan mengubah dulu data tersebut ke format teks (ASCII). Untuk SPSS caranya cukup mudah yaitu dengan klik Save > Save As.. kemudian pilih Tab delimited atau Fixed-ascii. Lewat SPSS syntax bisa dengan perintah:

WRITE OUTFILE=’C:\lokasi berkas\test.dat’
TABLE /ALL ..

Hasilnya berupa berkas yg berekstensi dat (*.dat).

Untuk percobaan, data yang dipakai di artikel sebelumnya saya buka dengan SPSS kemudian saya simpan sebagai berkas teks dengan nama berkas test.dat.

Untuk membuka berkas ini di R, jalankan perintah:

> test <- read.table("D:/test.dat",header=T)
> test

Perintah Header=T berarti baris pertama dari data akan dibaca sebagai nama variabel.

Read more »

Memasukkan data di R

19 September, 2007 (20:45) | Statistics | By: Bhina Patria

Pengguna SPSS pasti akan sedikit canggung ketika pertama kali menggunakan R. Hal ini disebabkan karena R yang berbasis konsole tentu saja tidak seperti SPSS yang menyediakan tampilan tabel data pada awal tampilan. Di R kita harus membiasakan diri untuk tidak melihat tabel data kita (walaupun hal ini bisa dilakukan di R).

Untuk perkenalan dengan R kali ini kita akan belajar bersama-sama cara memasukkan data di R berikut cara mengedit data. Misalkan kita memiliki data sbb:

data R

Dalam R jalankan perintah:

> coba <- data.frame(nama = c("Abie", "Budi", "Cici", "Dudu", "Eci"),
gender = c(1, 1, 2, 1, 2),
nilai = c(9, 8, 7, 9, 9))
> coba

Read more »