Publications by Cosign, Diagmel, Dogoy, Malinao, Montecillo, Ty
Montecillo - Final Exam
1. Provide the minimum, 1st quartile, median, mean, 3rd quartile and maximum of the variable “Years”. summary(Lyra$Years) Min. 1st Qu. Median Mean 3rd Qu. Max. 9.00 11.00 13.00 13.77 16.00 30.00 2. How many of them responded “yes” in the variable “c1.3”? Answer: 45 Lyra%>% group_by(c1.3)%>% summarise(F...
2810 sym
Montecillo_Final Exam
1. Provide the minimum, 1st quartile, median, mean, 3rd quartile and maximum of the variable “Years”. Min. 1st Qu. Median Mean 3rd Qu. Max. 9.00 11.00 13.00 13.77 16.00 30.00 2. How many of them responded “yes” in the variable “c1.3”? Answer: 45 # A tibble: 2 × 3 c1.3 Frequency Percentage <chr> <...
1248 sym
with_codes-Montecillo_Final Exam
1. Provide the minimum, 1st quartile, median, mean, 3rd quartile and maximum of the variable “Years”. summary(Lyra$Years) Min. 1st Qu. Median Mean 3rd Qu. Max. 9.00 11.00 13.00 13.77 16.00 30.00 2. How many of them responded “yes” in the variable “c1.3”? Answer: 45 Lyra%>% group_by(c1.3)%>% summarise(F...
1259 sym
Document
1. Provide the minimum, 1st quartile, median, mean, 3rd quartile and maximum of the variable “Years”. Min. 1st Qu. Median Mean 3rd Qu. Max. 9.00 11.00 13.00 13.77 16.00 30.00 2. How many of them responded “yes” in the variable “c1.3”? Answer: 45 # A tibble: 2 × 3 c1.3 Frequency Percentage <chr> <...
1235 sym
Problem 5
What is the minimum age? Answer: 30 summary(Durias$age) Min. 1st Qu. Median Mean 3rd Qu. Max. 30.00 43.00 50.00 49.27 57.00 60.00 In the variable “age”, group the “age” variable into two groups, with atmost 50 years and more than 50 years old. Durias%>% group_by(age = if_else(age<=50, "At most 50", "More than ...
3168 sym R (5586 sym/30 pcs) 1 img
PROBLEM5
What is the minimum age? Answer: 30 Min. 1st Qu. Median Mean 3rd Qu. Max. 30.00 43.00 50.00 49.27 57.00 60.00 In the variable “age”, group the “age” variable into two groups, with atmost 50 years and more than 50 years old. How many of them with at least 50 years old? Answer: 74 Socio-Demographic Profile Gend...
3143 sym 1 img
Problem #1
[1] 24 88 Demographic Profile Age Min. 1st Qu. Median Mean 3rd Qu. Max. NA's 18.00 20.00 21.00 21.13 22.00 23.00 1 Raised by: # A tibble: 3 × 3 `Raised by:` count Percentage <chr> <int> <dbl> 1 Father 3 12.5 2 Grandmother 1 4.17 3 Mother 20 83.3 Nu...
288 sym
Exploratory Data Analysis Assignment
Demographic Profile Year and Course # A tibble: 1 × 3 College count Percentage <chr> <int> <dbl> 1 Agriculture 41 100 Age Min. 1st Qu. Median Mean 3rd Qu. Max. NA's 18.00 21.00 21.50 21.38 22.00 24.00 1 Raised by: # A tibble: 4 × 3 `Raised by:` count Percentage <chr> ...
2728 sym