Publications by Winelyn Pelias

Factor Analysis in R

21.04.2023

Data Overview Fetching data from the server url <- "https://raw.githubusercontent.com/housecricket/data/main/efa/sample1.csv" data_survey <- read.csv(url, sep = ",") Describing the data vars n mean sd median trimmed mad min max range skew kurtosis ID 1 259 130.00 74.91 130 130.00 96.37 1 259 258 0.00 -1.21 KM1 ...

619 sym Python (8691 sym/17 pcs) 4 img

ACTIVITY 2 (PCA)

24.03.2023

Principal Components Analysis in R We will use the Places Rated Almanac data (Boyer and Savageau) which rates 329 communities according to nine criteria: Climate and Terrain, Housing, Health Care & Environment, Crime, Transportation, Education, The Arts, Recreation and Economics. Load the Data places <- read.table("D:/Stat 56/places.txt", heade...

1980 sym 2 img

Using R for Multivariate Analysis

27.02.2023

Multivariate Analysis It tells you how to use the R statistical software to carry out some simple multivariate analyses, with a focus on principal components analysis (PCA) and linear discriminant analysis (LDA). Reading Multivariate Analysis Data into R wine <- read.table("D:/Stat 56/wine.data", sep=",") paged_table(wine) P...

1389 sym Python (51364 sym/102 pcs) 9 img

Exercise 4

27.09.2022

Equality of Variances in R-Homogeneity test-Quick Guide There are different types of tests that can be utilized to assess the equality of variances. F-test:- Used for two groups variance comparison. Data must be normally distributed. Bartlett’s test:- Used for two or more groups variance comparison. Data must be normally distributed. Leven...

3666 sym R (2126 sym/25 pcs)

Exercise 3

27.09.2022

Paired sample t-test using RICT training data Paired sample T-test is also called the dependent sample T-test. It compares differences between two dependent mean scores. It is used to determine whether the mean difference between two sets of observations is zero. In a paired sample t-test each subject or entity is measured twice. This results...

6113 sym R (3762 sym/21 pcs) 2 img

Exercise 5

28.09.2022

One-way ANOVA One way ANOVA Example in R, the one-way analysis of variance (ANOVA), also known as one-factor ANOVA, is an extension of the independent two-sample t-test for comparing means when more than two groups are present. The data is divided into numerous groups using one single grouping variable in one-way ANOVA (also called factor var...

8122 sym R (5444 sym/67 pcs) 6 img

Exercise 2

28.09.2022

Two-way Anova Data library(readxl) Data1 <- read_excel("D:/Winelyn/Data1.xlsx") View(Data1) TT1<-Data1 TT1 # A tibble: 27 × 5 PhaseInterval Temperature `Adlay with wash` `Adlay with mi…` `Adlay with mi…` <chr> <chr> <dbl> <dbl> <dbl> 1 3- day 25°C 759...

931 sym R (38331 sym/47 pcs) 8 img

Midterm Exam

28.11.2022

Question 1 A COVID frontliner wants to estimate the average amount that a resident in Maramag would donate to COVID affected families in Maramag. Twenty residents were randomly selected from the Municipality of Maramag. The 20 randomly residents were contacted by telephone and asked how much they would be willing to donate. Their responses ar...

3845 sym R (5673 sym/60 pcs) 3 img

Sample Analysis Using MR - PELIAS, WINELYN

30.11.2022

New names: • `Relax3` -> `Relax3...40` • `Relax3` -> `Relax3...41` • `Education` -> `Education...50` • `` -> `...51` • `Income` -> `Income...52` • `` -> `...71` • `Education` -> `Education...72` • `` -> `...73` • `` -> `...74` • `` -> `...75` • `Income` -> `Income...76` • `` -> `...77` • `` -> `...79` • `...

1850 sym Python (4210 sym/19 pcs) 2 img

Analysis Using MR

05.12.2022

Independent variables: SSOverall, STOverall , and SCOverall Dependent variable: GWA (1st sem SY: 2021-2022) library(rmarkdown) library(dplyr) Warning: package 'dplyr' was built under R version 4.2.1 Attaching package: 'dplyr' The following objects are masked from 'package:stats': filter, lag The following objects are masked from 'packag...

1017 sym R (1905 sym/13 pcs) 1 img