Results
Great work overall! But still need some small changes to make it better.
Results
Great work overall! But still need some small changes to make it better.
cor.mtest <- function(mat, ...) { mat <- as.matrix(mat) n <- ncol(mat) p.mat <- matrix(NA, n, n) diag(p.mat) <- 0 for(i in 1:(n-1)) { for(j in (i+1):n) { tmp <- cor.test(mat[,i], mat[,j], ...) p.mat[i,j] <- p.mat[j,i] <- tmp$p.value } } colnames(p.mat) <- rownames(p.mat) <- colnames(mat) return(p.mat) } p.mat <- cor.mtest(cor_data)
I don't know what this part is doing, I assume you want to returns a matrix of p-values, but I don't think you need p-values in a matrix table. Cause I can tell from your plot, If p < .05, it show the correlation, but If p > .05, it won't show anything.
If your goal is to evaluate the relationships between all variables, it may be more informative to display the full correlation matrix without masking non-significant values. In that case, you can remove the significance filter so the plot shows every correlation.
figure
resize the number that shows on the plot
12
figure 14.
11
figure 13. explain a little what you plot shows
10
figure 12. explain a little what you plot shows
polar
if you want, you can add another layer "geom_jitter()", adds a small amount of random variation to the location of each point, so we can clearly visualizes data density.
(But maybe ask Dr.Shane before you add this)
figure
Figure 11. explain a little what you plot shows
8
Figure 10. And explain a little what you plot shows
figure
Figure 9
figure
Figure 8.
figure
same here, and this should be Figure 7.
figure
same here
figure
same here
figure
same here
figure
same here
figure
same here
figure
same here, explain the meaning of this diagram and what the differences are before and after the intervention.
figure
Please explain the meaning of this diagram and what the differences are before and after the intervention.
alpha 0.65 0.59
add one or two sentence to explain this alpha results, something like: "PREZEROSUM scale has borderline internal consistency, and the POSTZEROSUM scale has weak internal consistency, meaning the items may not be measuring the construct reliably."
ALIGN
What is ALIGN, add one sentence to explain a little bit
Warning
same here use #| warning: false
Warning
same here use #| warning: false
Warning
use #| warning: false to force the chunk not showing the warning message.
DEI
What is DEI, add one sentence to explain a little bit
Transform
Same here, Transform should be in the results section, so double ##Trandform
3 Import
Import should be in the results section, so double ##Import
2 Discussion
Discussion section should be at the end of the report
insert Brianna
Also here.
everything you did below
Did we forget to add something here?
histogram
Adding title name for each of the plot, rename the x-axis and y-axis, so make it clearly for the readers
##IMPORT
move this up and write this in the source mode, so the heading will appear, not as ##
##Load
That's also the IMPORT section
Disucssion
Great Work!
Model
Instead of calling "Model" for this section, using the test name as your heading. Like "Linear Regression"
Figure 1
You already called Figure 1 for your first histogram, so for here it should be Figure 3
scatterplot
Same here, Add title name for each of the plot, rename the x-axis and y-axis, so make it clearly for the readers
Two histograms depicting the distribution of nutritional knowledge scores and macro-nurtient accuracy scores.
Maybe change the figure caption, instead of saying "Two histograms....", explain each by each, and try to make them different. And figure number like" Figure 1. " before each caption
what this tells us:
Make this part in text not comment, and make sure include discussions section at the end.
Knowledge
Including some headings, like "#Results", "##IMPORT", "##TRANSFORM", "##Shapiro-Wilk Normality Test", "#Discussion"
EFFSAFE1 == 1 ~ 6, # strongly disagree = 1
I have check the survey you did, and is already in the correct order strongly disagree(1), disagree(2), ......, strongly agree(6).
And you recode the strongly disagreee(1) to strongly disagreee(6). So the order is reverse.
So the correct code is only recode -50 and -99 to NA is fine, and keep everything else as the orginal form.
p-value = 4.394e-06
Maybe write one sentence for each of the tests, talk about which of the variable you use and explain your p-value, by saying whether is significiant or not.
Facebook_Usage_num 0.3189 0.1450 2.199 0.0279 *
the result is different from what I have in the posit cloud.