Archives
now browsing by author
WORKSHOP STATISTIKA EKOLOGI
Workshop : Aplikasi Teknik Molekuler dan Statistika dalam Analisa Biodiversitas” Lokasi : Departemen Biology UIN SGD BANDUNG Jurusan Biologi Fakultas Sains dan Teknologi bekerjasama dengan Keluarga Mahasiswa Himpunan Biologi (KMHB) menyelenggarakan Kuliah Umum dengan tema “Aplikasi Teknik Molekuler dan Statistika dalam Analisa Biodiversitas”. Acara ini berlangsung di Aula Fakultas Sains danRead More

Ecological Show Cave and Wild Cave: Negative Binomial Gllvm’s Arthropod Community Modelling
Abstract Ecology is a branch of biology that studies the interaction and relationship between organisms and their environment. Abundance, distribution of organisms and patterns of biodiversity are great interests for many ecologists. One of interesting ecosystems to be studied is a cave. A cave has a typical environment character withRead More
Short Communication: Cave-dwelling Arthropod community of Semedi Show Cave in Gunungsewu Karst Area, Pacitan, East Java, Indonesia
ABSTRACT.Arthropods are a major group of animals which have significant roles in maintaining cave ecosystem stability. Semedi is a new show cave, but information about arthropods in this cave was not available. The use of cave as a tourist attraction will bring environmental changes which potentially disturb cave-dwelling arthropod community.Read More
The difference on Arthropod communities’ structure within show caves and wild caves in Gunungsewu karst area, Indonesia
ABSTRACT. This study was conducted to determine the differences on Arthropod communities’ structure and climatic-edaphic factors within wild caves and show caves in Gunungsewu karst area, also analyze the climatic and edaphic components that give the strongest influence on Arthropods community. Arthropod Sampling was done by hand collecting, pitfall and baitRead More
Statistics Ecology and Biodiversity
GOALS : We conducted research about Statistics Ecology and Biodiversity in collaboration with the Indonesian Speleological Society (ISS) and the Indonesian Institute of Sciences (LIPI, Indonesia). The significance of this research is to calculate an index of species, richness, diversity, evenness, and dissimilarity. Also, Analyze the climatic and edaphic factor components thatRead More
[SYNTAX R ] DISTRIBUSI NORMAL MULTIVARIAT
Analisis Multivariat merupakan salah satu metode dalam analisis statistik yang banyak digunakan dalam penelitian kuantitatif yang melibatkan banyak variabel. Ada beberapa metode dalam Analisis Multivariat, antara lain Analisis Faktor, Analisis Diskriminan, Analisis Klaster, Multidimensional Scaling, Analisis Konjoin, dan Model Persamaan Struktural (SEM). Secara lengkap teori yang berkaitan dengan analisis multivariat dapat dilihat padaRead More
[SYNTAX R] UJI KECOCOKAN DISTRIBUSI PELUANG
Permasalahan : Membangkitkan 50 data random dari distribusi peluang binomial, chisquare, gamma, dan F . Dengan distribusi tersebut kita dapat membangkitkan 50 bilangan random akan tetapi khusus untuk distribusi binomial hasilnya adalah bilangan bulat karena distribusi tersebut adalah diskrit. Distribusi yang lain adalah kontinu sehingga hasil bilangan randomnya adalahRead More
[SYNTAX R] Fungsi Untuk Menguji Kesamaan Varian Dari Dua Populasi Normal
uji.var.2p<-function(x1,x2,alpha){ #rumusan hipotesis statistik cat(“\n”) cat(“*************************”,”\n”) cat(“Ho: varian kedua populasi sama”,”\n”) cat(“H1: varian kedua populasi berbeda”,”\n”) cat(“Taraf signifikansi =”,alpha,”\n”) cat(“\n”) #menghitung statistik sampel n1<-length(x1) n2<-length(x2) var1<-var(x1) var2<-var(x2) f_hitung<-var1/var2 #menghitung f_tabel v1<-n1-1 v2<-n2-1 f_tabel1<-qf(1-alpha/2,v1,v2) f_tabel2<-1/f_tabel1 #pengambilan keputusan dan pencetakan hasil cat(“Ftabel1(“,alpha/2,”;”,v1,”;”,v2,”)=”,f_tabel1,”\n”) cat(“Ftabel2(“,1-alpha/2,”;”,v1,”;”,v2,”)=”,f_tabel2,”\n”) cat(“Wilayah kritik berukuran alpha: Fhitung <“,f_tabel2,”atau Fhitung >”,f_tabel1,”\n”) cat(“FhitungRead More
[SYNTAX R] Menghitung Peluang Mata Dadu
## Pembangkitan Sample Random sample (1:6,10, replace=TRUE) ## Pelemparan Dadu 10 Kali sample (c(“A”,”G”),10,replace=TRUE) ## Pelemparan Mata Uang 10 kali ## Fungsi Pelemparan Dadu sebanyak n kali Dadu=function(n) { sample (1:6,n,replace=TRUE) } Dadu(5) ## Pelemparan Dadu 5 kali ## VARIABEL RANDOM ## Kejadian munculnya mata dadu 5 pada pelemparan daduRead More