-
-
Save elinw/4920ba3707172a04457aeae8859008ae to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(haven) | |
chs2019_public <- read_sas("~/Downloads/chs2019_public.sas7bdat", | |
NULL) | |
library(Hmisc) | |
library(descr) | |
library(haven) | |
chs2020_public <- read_sas("~/Downloads/chs2020_public.sas7bdat", | |
NULL) | |
chs2020small = subset(chs2020_public, select = c("survey", "qxvers", "mood1" , "mood2")) | |
chs2019small = subset(chs2019_public, select = c("survey", "qxvers", "mood1" , "mood2")) | |
chs2019_2020 <-rbind(chs2020small, chs2019small) | |
freq(chs2019_2020$survey) | |
ggplot(data = chs2019_2020, aes(x = mood1)) + geom_histogram(color="blue", fill="white", binwidth =1, aes(y=(..count../sum(..count..))*100)) + | |
ggtitle("Figure #. Distribution of DESCRIBE YOUR VARIABLE")+ | |
labs(y="Percent", x="LABEL FOR YOUR VARIABLE VALUES") | |
ggplot(data=chs2019_2020)+ | |
stat_summary(aes(x=survey, y=mood1), fun.y=mean, geom="bar")+ | |
ggtitle("Descriptive Title Here") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment