Publications by nobody
0308_SSP_W4
要改為中文語系,Windows 作業系統使用者在 R Console 輸入: Sys.setlocale(category = “LC_ALL”, locale = “cht”) #讀檔案,資料來自於 TIMSS 2011 年 fL <- "https://cpcheng.neocities.org/Rbook/02/data/TIMSSmath.txt" dta <- read.table(fL, header = TRUE, fileEncoding = 'big5') #檢視資料結構 str(dta) ## 'data.f...
135 sym R (5315 sym/34 pcs) 4 img
0308_SSP_Classwork2
faraway的套件中有許多資料, hsb資料記錄了200名高中生的性別、族群、閱讀、寫作、數學、科學與社會分數。 (1)請描述上述資料,並做摘錄。 (2)請利用summary報告各個變項的基本統計。 (3)hsb資料:請計算不同性別、族群學生,在五個科目上的平均數、標準差、�...
189 sym R (222 sym/4 pcs)
0301_SSP_W3_edited
2022/3/1 資料檢視 讀取檔案、提取資料與製造變項 資料來自於 NHIS 2010 調查,取 1955 年以前出生者(55歲以上) 視力困難、聽力困難、移動困難與溝通困難變項,分數越高越有困難 資料檔名: Quality_of_Life.txt #檔案地址 fLoc <- "https://cpcheng.neocities.org/Rbook/01/data/Quality_o...
528 sym R (5258 sym/53 pcs)
土洋博士
pacman::p_load(model4you, ggplot2, glmertree, ggbeeswarm, gridExtra, psychotools) Data dta <- read.csv("ncku_prof_test.csv", h=T, stringsAsFactors = TRUE) ## select variables to be used dta <- dta[, -c(3,6)] str(dta) 'data.frame': 285 obs. of 6 variables: $ ID : int 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 .....
1119 sym R (2906 sym/25 pcs) 7 img 1 tbl
HW1
#檔案地址 fLoc <- "https://cpcheng.neocities.org/Rbook/01/data/Quality_of_Life.txt" # 讀取檔案 dta <- read.table(file = fLoc, header = TRUE) #dta 的類型是資料框架(data frame) class(dta) ## [1] "data.frame" 看看dta維度: 多少行、多少欄(變項) dim(dta) ## [1] 2077 7 #利用names看看變項名稱 names(dta) ...
704 sym R (8763 sym/104 pcs) 5 img
0301_SSP_W3
2022/2/22 Introduction to R Getting started with R Installing R Typing commands in the R console Doing simple calculations with R Storing a number as a variable Using functions to do calculation Letting Rstudio help you with your commands Storing text data Quitting R 2022/3/1 資料檢視 讀取檔案、提取資料與製造變項 資料來�...
1116 sym R (8660 sym/100 pcs) 5 img
STAT Course
dta <- read.table("nprof.txt", h = F) names(dta) <- c("年分", "教師數", "教授", "副教授", "助理教授", "講師", "其他", "助教", "學生數") head(dta) ## 年分 教師數 教授 副教授 助理教授 講師 其他 助教 學生數 ## 1 72 301 129 129 0 45 15 0 NA ## 2 73 312 134 118 ...
50 sym R (1490 sym/10 pcs) 5 img
0222_SSP_W2
Installing R http://cran.r-project.org/ Typing commands at the R console dta <- read.table("0222.txt", header = T) head(dta) ## ID compete age gender btype temp att sleepy prevgrad scon ## 1 1 9 25 F O 21 2 45 60 2.8 ## 2 2 8 23 F A 19 1 3 90 3.8 ## 3 3 7 25 F A...
87 sym R (2192 sym/7 pcs)
0315_SSP_W5
類別變項 fL <- "https://cpcheng.neocities.org/Rbook/02/data/TIMSSmath.txt" dta <- read.table(fL, header = TRUE) names(dta) <- c("country", "gender", "paedu", "math", "chem", "earth", "bio", "phy", "comp", "desk", "book", "room", "inter", "nbook") library(lattice) 類別變項的描述統計 Frequencies: The number of observations for a part...
218 sym R (3639 sym/34 pcs) 5 img
0315_SSP_W5_edited
類別變項 fL <- "https://cpcheng.neocities.org/Rbook/02/data/TIMSSmath.txt" dta <- read.table(fL, header = TRUE) names(dta) <- c("country", "gender", "paedu", "math", "chem", "earth", "bio", "phy", "comp", "desk", "book", "room", "inter", "nbook") library(lattice) 類別變項的描述統計 Frequencies: The number of observations for a part...
291 sym R (5240 sym/44 pcs) 7 img