Publications by Tarid Wongvorachan

Item Response Theory_Practice

29.09.2020

We will be using the package ltm with two test data sets, one dichotomous and one polytomous. An example with Dichotomous data setwd("D:/Class Materials & Work/Summer 2020 practice/IRT") #Loading required packages library(ltm) library(mirt) We will be using the data from Law School Admission Test (LSAT), N = 1000, 5 items. The data can be ca...

10163 sym R (30612 sym/63 pcs) 4 img

Data Visualization with base packages

30.09.2020

Task1: Specify working directory setwd("D:/Class Materials & Work/ED_Psych 521- Data Management and Visualiztion/R Stat Package/R_Lesson 5- Data Visualization_Base/Practice 7") library(tidyverse) #Read dataset file CleanedData<-read.csv("Tarid_MergedData.Reduced_cleaned.csv", header=T) Task2: Bar chart for SchoolType #Extract Schooltype to ...

550 sym R (3680 sym/10 pcs) 8 img

Data Visualization with GGplot2_Advance

01.10.2020

Task1: Specify working directory and read the file setwd("D:/Class Materials & Work/ED_Psych 521- Data Management and Visualiztion/R Stat Package/R_Lesson 7- Advance Visualization_GGplot2/Practice 9") #1.1 Read the file PIRLS_Data_Merged<-read.csv("PIRLS2011G4_MergedSample_ggplot2.csv", header=T) Task2: Recode the variable EngagedCat to a ord...

1158 sym R (9786 sym/13 pcs) 7 img

Data Visualization with GGplot2

01.10.2020

Task1: Working directory and read the file setwd("D:/Class Materials & Work/ED_Psych 521- Data Management and Visualiztion/R Stat Package/R_Lesson 6- Data Visualization_GGplot2/Practice 8") #Read dataset file CleanedData<-read.csv("Tarid_MergedData.Reduced_cleaned.csv", header=T) #Activating the package library(ggrepel) library(ggpubr) li...

565 sym R (4668 sym/20 pcs) 9 img

Estimating Rasch model with dichotomous data

01.10.2020

Examples with Dichotomous data First, we will load the required package and data set. The LSAT is obtained from package ltm setwd("D:/Class Materials & Work/Summer 2020 practice/IRT_Dicho") library(mirt) LSAT <- data.frame(ltm::LSAT) With mirt function, we will use model=1 to indicate that we expect only one factor to be extracted in this expl...

808 sym R (2478 sym/11 pcs) 4 img

Educational Data Mining Practice

10.10.2020

We will be using Programme for International Student Assessment (PISA) 2015 data set for turkey student. The data comes from a large-scale assessment in various knowledge domains of international students. setwd("D:/Class Materials & Work/Summer 2020 practice/Educational Data Mining") # Packages to be used library("data.table") library("tidy...

15240 sym R (46288 sym/143 pcs) 20 img

Principal Component Analysis practice

19.12.2020

Principal component analysis (PCA) allows us to summarize and to visualize the information in a data set containing inter-correlated quantitative observations. Each variable could be considered as a different dimension, but the numbver of four or more dimensions could be difficult to visualize. PCA can be used to extract the important information...

7647 sym R (15677 sym/69 pcs) 27 img

Canonical Correlation Analysis practice

26.11.2020

Canonical Correlational Analysis (CCA) is a class of multivariate statistical analysis technique that is used to analyze multiple measurements of objects simultaneously. There is a small difference between CCA and PCA- Principal Component Analysis; CCA is used to correlate simultaneously several metric Dependent Variable (DV) and several metric ...

5130 sym R (6080 sym/22 pcs) 1 img

ARM with data preprocessing

10.11.2020

For this practice, we will use the AdultUCI built-in data set in arules package. The data set is not transactionalized yet, so we will practice data preprocessing as well. setwd("D:/Class Materials & Work/Summer 2020 practice/ARM_2") library(arules) #for ARM library(arulesViz) #for ARM visualization Converting data frame into transactional da...

1840 sym R (12232 sym/37 pcs) 5 img

Association Rule Mining practice

06.11.2020

Association Rule Mining (ARM) is a data minin technique that focuses on mining for associations between itemsets for further applications. We will use package arules for ARM and arulesViz for AR visualization. The data set will be the built-in Groceries data. setwd("D:/Class Materials & Work/Summer 2020 practice/ARM") library(arules) #for ARM ...

4262 sym R (13232 sym/39 pcs) 6 img