440 likes | 707 Views
ภาษา R เบื้องต้น. Computer Program in Education Research and Measurment ธวัชชัย เอี่ยมไพโรจน์. RGui. ออกจาก RGui. Help ใน R. help(print). การเปลี่ยนไดเรคทอรี. การเรียกไฟล์คำสั่งของ R มาทำงาน. exsample.R. # draw a smooth line through a scatter plot
E N D
ภาษา R เบื้องต้น Computer Program in Education Research and Measurment ธวัชชัย เอี่ยมไพโรจน์
การเรียกไฟล์คำสั่งของ R มาทำงาน
exsample.R # draw a smooth line through a scatter plot plot(cars, main="Stopping Distance versus Speed") lines(stats::lowess(cars))
การจัดการพื้นฐานกับ numbers และ vector • x <- c(10.4, 5.6, 3.1, 6.4, 21.7) หรือ • assign(“x”, c(10.4, 5.6, 3.1, 6.4, 21.7)
Basic Plots • Strip Charts • Histograms • Boxplots • Scatter Plots • Normal QQ Plots
boxplot(count ~ spray, data = InsectSprays, col = "lightgray")
Scatter Plots • plot() • cor()
qqnorm(precip, ylab = "Precipitation [in/yr] for 70 US cities")
Rcmdr R Commander
Import from SPSS data set. library(foreign, pos=4) Dataset <- read.spss("C:/Documents and Settings/Administrator/Desktop/Data_SPSS/data6.sav", use.value.labels=TRUE, max.value.labels=Inf, to.data.frame=TRUE)
load("C:/Documents and Settings/Administrator/Desktop/Data_R/data11a2.RData")
Questions ?... Comments http://www.kuisociety.net http://www.r-burapha.com