Treatment for severe postnatal depression
These data arose from a study on the efficacy of oestrogen give transdermally for treatment of severe postnatal depression. Women with major depression were randomly assigned to either a placebo control group or estrogen patch group. Prior to the first treatment all women were assessed by self-ratings of depressive symptoms on the Edinburgh Postnatal Depression Scale (EPDS). The data on EPDS were collected monthly for six months once the treatment began. Higher scores on the EDPS are indicative of higher levels of depression.
data(depression)
A data frame with 427 rows and 5 variables:
a numeric vector giving the identifier of each woman .
a factor giving the received treatment: "placebo" or "estrogen".
a numeric vector giving the number of months since the treatment began, where -1 indicates the pretreatment assessment of the EDPS.
a numeric vector giving the value of the EDPS.
a numeric vector coded as 1 when the value of the EDPS is greater than or equal to 11 and coded as 0 in other cases.
Gregoire A.J.P., Kumar R., Everitt B., Henderson A.F. and Studd J.W.W. (1996) Transdermal oestrogen for treatment of severe postnatal depression, The Lancet 347, 930-933.
boxplot(dep ~ visit, data=subset(depression,group=="placebo"), at=c(0:6)-0.2, col="yellow", boxwex=0.25, outline=FALSE, xaxt="n", ylab="EDPS", xlab="Months since the treatment began", ylim=range(na.omit(depression$dep))) boxplot(dep ~ visit, data=subset(depression,group=="estrogen"), add=TRUE, at=c(0:6)+0.2, col="blue", boxwex=0.25, outline=FALSE, xaxt="n") axis(1, at=0:6, labels=c(-1,1:6)) legend(-1, 15, legend=c("placebo","estrogen"), col=c("yellow","blue"), pch=15, bty="n", cex=0.9, title.adj=0.2, y.intersp=0.1, x.intersp=0.3)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.