Publications by Isa Koyuncu
HAFTA 8.2
Betimsel İstatistikler library(dplyr) library(sjlabelled) ## ## Attaching package: 'sjlabelled' ## The following object is masked from 'package:dplyr': ## ## as_label ## The following object is masked from 'package:ggplot2': ## ## as_label load("C:/Users/huawei/Desktop/OLC731/RPROJE/hft8/data/midiPISA.rda") load("C:/Users/huawei/...
520 sym R (8400 sym/64 pcs) 16 img
Hafta 8.1
Betimsel İstatistikler library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union load("C:/Users/huawei/Desktop/OLC731/RPROJE/hft8/data/midiPISA.rda") min(midiPISA$ODOKU...
1202 sym R (3795 sym/43 pcs) 7 img
HATFA 6.1
Giriş Bu hafta Kübra Atalay Kabasakal ve Sebahat Gören’in EPODDER Kİtaplık’ta açık erişim olarak yayımlanan “Veri Düzenleme ve Görselleştirme” adlı çalışmasından ilerledik. Veri Setlerinin İndirilmesi ve Bilgisayara Yüklenmesi Şu üç veri setini indirip R’a aktardık: ##Bilişsel Veri Seti ##Öğrenci Veri Seti #...
3697 sym R (11424 sym/44 pcs) 1 tbl
HAFTA 2
HAFTA 2 Matematiksel işlemler ve formüller için chetsheet’e bakmalıyız! R Paket Yükleme ve Fonksiyonlara Giriş Bu hafta R’a paket nasıl yüklenir bunu öğrendik. Kod yazarak veya kütüphaneleri kullanarak paket indirilebilir. “install.packages” ile paketi yükledikten sonra bu satırı yorum satırına çevirmeliyiz. Bununla b...
6404 sym R (13021 sym/31 pcs)
HAFTA 5
Veri Üretim Burada iki koşullu bir çalışmadan elde edilen verileri simüle edeceğiz. A koşulundaki ortalama 0 ve B koşulundaki ortalama 1’dir. n <- 100 data <- data.frame( id = 1:n, condition = c("A", "B") |> rep(each = n/2), dv = c(rnorm(n/2, 0), rnorm(n/2, 1)) ) Grafik library(ggplot2) ggplot(data, aes(condition, dv)) + ...
1282 sym R (293 sym/2 pcs) 1 img
HAFTA 1
R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within...
1964 sym 1 img