[R] (no subject)

Johannes Huesing johannes at huesing.name
Tue Nov 18 22:55:27 CET 2008


Salas, Andria Kay <aks2515 at uncw.edu> [Tue, Nov 18, 2008 at 04:10:06PM CET]:
> I need help with another problem I am having that deals with the generation of vectors that I asked about yesterday.  I now need to have each value in the vector (all values either 1 or -1) have a probability p that it will switch signs (so, say, each value has a 50% chance of switching from -1 to 1 or visa versa).  What would be the best way to go about doing this?  Thank-you!!

Say you have a vector v, you can generate another vector randomly by

w <- sample(c(-1, 1), length(v), replace=TRUE)

and multiply v with w.

-- 
Johannes Hüsing               There is something fascinating about science. 
                              One gets such wholesale returns of conjecture 
mailto:johannes at huesing.name  from such a trifling investment of fact.                
http://derwisch.wikidot.com         (Mark Twain, "Life on the Mississippi")



More information about the R-help mailing list