Notes to R Markdown

How to view crossover with descriptives, the thought process
This commit is contained in:
rehughes07 2021-10-27 13:29:43 +01:00
parent ab9f95b20f
commit ff5baa8305

View file

@ -65,11 +65,16 @@ names(Q26_freq_data)[2] <- "Frequency"
head(Q26_freq_data) head(Q26_freq_data)
pie(Q26_freq_data$Frequency, labels = c("Other Priorities", "Lack Subject Knowledge", "Lack Confidence", "Current Syllabus", "Pupil Disinterest", "Department Head", "Available Work Schemes", "Unavailable Resources", "Uncertain of Pedagogical Approach")) pie(Q26_freq_data$Frequency, labels = c("Other Priorities", "Lack Subject Knowledge", "Lack Confidence", "Current Syllabus", "Pupil Disinterest", "Department Head", "Available Work Schemes", "Unavailable Resources", "Uncertain of Pedagogical Approach"))
# Bar graph tidier
``` ```
pie(Q26_freq) pie(Q26_freq)
#very messy as a pie chart - split by type? Or is it important to see crossover #very messy as a pie chart - split by type? Or is it important to see crossover
Could potentially see crossover with crosstabs by type (since response is now binary variable T/F), maybe chi square; perhaps just descriptives
```{r Q3 bar/pie} ```{r Q3 bar/pie}
Q3_data <- read.csv("./data/Q3.csv") Q3_data <- read.csv("./data/Q3.csv")