Displaying 1 result from an estimated 1 matches for "clot2".
Did you mean:
clob2
2012 Mar 28
3
Connect lines in a dot plot on a subject-by-subject basis
...can help me fix my code
Thanks,
John
# Create a matrix to hold our data.
mydata <- matrix(nrow=10,ncol=10)
dimnames(mydata) <- list(NULL,c("time1", "time2", "time3", "time4", "time5",
"clot1", "clot2", "clot3", "clot4", "clot5"))
# load data into the matrix.
# The first five columns represent time of measurement
# Columns 6-10 have the measured values.
mydata[1,]=c( 1, 3, NA,NA, NA, 22, 40, NA, NA, NA)
mydata[2,]=c( 1, NA,NA,NA, NA, 39, NA, NA, NA, NA)
mydata...