## # A tibble: 6 × 4
## `Course Taken` Frequency `Mean Age` `SD of Age`
## <chr> <int> <dbl> <dbl>
## 1 BS Biology 33 21.6 0.751
## 2 BS Civil Engineering 16 21.4 0.727
## 3 BS Electrical Engineering 17 21.6 0.618
## 4 BS Mathematics 33 21.7 0.924
## 5 BSED Biology 32 21.5 0.803
## 6 BSED English 32 21.6 0.878
## # A tibble: 6 × 6
## `Course Taken` Frequency `Mean Intrinsic5` `Mean Extrinsic4` `Mean TP3`
## <chr> <int> <dbl> <dbl> <dbl>
## 1 BS Biology 33 4.94 5.27 3.88
## 2 BS Civil Engineering 16 4.06 5.5 3.31
## 3 BS Electrical Engine… 17 4.35 5 3.47
## 4 BS Mathematics 33 4.27 5.39 3.55
## 5 BSED Biology 32 4.34 5.22 3.25
## 6 BSED English 32 4.19 5.66 3.91
## # ℹ 1 more variable: `Mean CP3` <dbl>
“1 for”Strong Disagree”
“2” for “Disagree”
“3” for “Moderately Disagree”
“4” for “Neutral”
“5” for “Moderately Agree”
“6” for “Agree” “7” for “Strongly Agree”
a. How many observations in Variable In3 that are strongly agree and at the same time moderately disagree in variable In4?
## `summarise()` has grouped output by 'In3.1'. You can override using the
## `.groups` argument.
## # A tibble: 4 × 3
## # Groups: In3.1 [1]
## In3.1 In4.1 count
## <chr> <chr> <int>
## 1 Strongly Agree Agree 4
## 2 Strongly Agree Moderately Agree 3
## 3 Strongly Agree Neutral 1
## 4 Strongly Agree Strongly Agree 5
Answer: There are no observations from variable In3 that are strongly
agree at the same time moderately disagree in In4.
b. How many observations in Variable In3 that are strongly agree and at the same time Neutral in variable In4?
## `summarise()` has grouped output by 'In3.1'. You can override using the
## `.groups` argument.
## # A tibble: 1 × 3
## # Groups: In3.1 [1]
## In3.1 In4.1 count
## <chr> <chr> <int>
## 1 Strongly Agree Neutral 1
Answer: There are 1 observations in variable In3 that are strongly
agree at the same time Neutral in In4.
Make a new variable named as “InAverage”, InAverage is the average of
the responses in the variables In1, In2, In3, In4, and In5.
InAverage<-(Finally$In1+Finally$In2+Finally$In3+Finally$In4+Finally$In5)/5
Make two groups of the variable “Course Taken”
Grouping:
Group 1: BS Civil Engineering, BS Electrical Engineering, ad BS
Mathematics
Group 2: BS Biology, BSED Biology, and BSED English