From ff5baa83050dd12324b4654fc43e95933c15535e Mon Sep 17 00:00:00 2001 From: rehughes07 <58590776+rehughes07@users.noreply.github.com> Date: Wed, 27 Oct 2021 13:29:43 +0100 Subject: [PATCH] Notes to R Markdown How to view crossover with descriptives, the thought process --- Connect Project R Markdown.Rmd | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Connect Project R Markdown.Rmd b/Connect Project R Markdown.Rmd index 59788fb..2a704e0 100644 --- a/Connect Project R Markdown.Rmd +++ b/Connect Project R Markdown.Rmd @@ -65,10 +65,15 @@ names(Q26_freq_data)[2] <- "Frequency" 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")) +# Bar graph tidier + + ``` pie(Q26_freq) #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}