R Dataset / Package HSAUR / schizophrenia2
On this R-data statistics page, you will find information about the schizophrenia2 data set which pertains to Schizophrenia Data . The schizophrenia2 data set is found in the HSAUR R package. You can load the schizophrenia2 data set in R by issuing the following command at the console data("schizophrenia2"). This will load the data into a variable called schizophrenia2. If R says the schizophrenia2 data set is not found, you can try installing the package by issuing this command install.packages("HSAUR") and then attempt to reload the data with the library() command. If you need to download R, you can go to the R project website. You can download a CSV (comma separated values) version of the schizophrenia2 R data set. The size of this file is about 5,952 bytes.
Schizophrenia Data
Description
Though disorder and early onset of schizophrenia.
Usage
data("schizophrenia2")
Format
A data frame with 220 observations on the following 4 variables.
subject
-
the patient ID, a factor with levels
1
to44
. onset
-
the time of onset of the disease, a factor with levels
< 20 yrs
and> 20 yrs
. disorder
-
whether thought disorder was
absent
orpresent
, the response variable. month
-
month after hospitalisation.
Details
The data were collected in a follow-up study of women patients with schizophrenia. The binary response recorded at 0, 2, 6, 8 and 10 months after hospitalisation was thought disorder (absent or present). The single covariate is the factor indicating whether a patient had suffered early or late onset of her condition (age of onset less than 20 years or age of onset 20 years or above). The question of interest is whether the course of the illness differs between patients with early and late onset?
Source
Davis (2002), Statistical Methods for the Analysis of Repeated Measurements, Springer, New York.
Examples
data("schizophrenia2", package = "HSAUR") mosaicplot(xtabs( ~ onset + month + disorder, data = schizophrenia2))
Dataset imported from https://www.r-project.org.