Displaying 2 results from an estimated 2 matches for "dbp1".
Did you mean:
db1
2001 Jun 15
1
contrasts in lm and lme
...Sons, Inc., New York, NY, USA
which is also found at www.med.ed.ac.uk/phs/mixed. The data file was opened
and initialized with
> dat <- read.table("bp.dat")
> names(dat) <-
c("patient","visit","center","treatment","dbp","dbp1","cf","cf1")
> attach(dat)
> Patient <- factor(patient)
> Treatment <- factor(treatment)
> Center <- factor(center)
> Visit <- factor(visit)
> dat1 <- data.frame(Patient,Visit,Center,Treatment,dbp,dbp1)
> sapply(dat1,data.class)
Patient...
2010 Mar 31
2
Generative Topographic Map
...ackage
I noticed the original MatLab Pckage is much better documented.
I had a look at the R demo code "gtm_demo" and found that variable Y is used in advanced of being created:
I wrote my own few lines as follows:
inDir <- "C:/Documents and Settings/Monville/Alanine Dipeptide/DBP1/DHA"
setwd(inDir)
T <- read.table("DHA_TNH.txt")
L <- 3
X <- matrix(nrow=nrow(T),ncol=3,byrow=TRUE)
MU <- matrix(nrow=round(nrow(T)/5), ncol=L)
for(i in 1:ncol(X)) {
for(j in 1:nrow(X)) {
X[j,i] <- RANDU()
}
}
for(i in 1:ncol(MU)) {
for(j in...