Created
November 10, 2022 13:24
-
-
Save MJacobs1985/83e79269c084d0e58228e08446d95ab6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
histogram(~ SurvTimeWeek | is.na(Physical_Functioning), data = total) | |
histogram(~ Emotional_Functioning | is.na(Physical_Functioning), data = total) | |
histogram(~ SurvTimeWeek | timef*is.na(Interference), data = total,type = "density", | |
panel = function(x, ...) { | |
panel.histogram(x, ...) | |
panel.mathdensity(dmath = dnorm, col = "black", | |
args = list(mean=mean(x),sd=sd(x))) | |
} ) | |
histogram(~ Severity | timef*is.na(Relief), data = total) | |
histogram(~ Severity | timef*is.na(Pain), data = total) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment