Skip to content
Back to formatted view

Raw Message

Message-ID: <1296175539330-3243534.post@n4.nabble.com>
Date: 2011-01-28T00:45:39Z
From: David A. Johnston
Subject: sapply puzzlement
In-Reply-To: <87r5bx3ms2.fsf@gmail.com>

sapply(z, function(row) ...) does not actually grab a row at a time out of
'z'. It grabs a column (because 'z' is a data.frame)

You may want:
t(apply(z, 1, function(row) row - means))

or:

t(t(z) - means)


Hope that helps,

-David Johnston
-- 
View this message in context: http://r.789695.n4.nabble.com/sapply-puzzlement-tp3243520p3243534.html
Sent from the R help mailing list archive at Nabble.com.