Hi,

Given this vector:

> x <- c(30.9, 60.1  , 70.0 ,  73.0 ,  75.0 ,  83.9 ,  93.1 ,  97.6 ,  98.8 , 
> 113.9)
 [1]  30.9  60.1  70.0  73.0  75.0  83.9  93.1  97.6  98.8 113.9

> mean.x <- mean(x)
[1] 79.63

I wish to:

1. Create a new vector (nx) with the same size as "x"
2. Fill "nx" with the mean value

thus in the end I hope to get something like:

[1] 79.63 79.63 79.63 79.63 79.63 79.63 79.63 79.63 79.63 79.63

Is there a way to do it?

- Gundala Viswanath
Jakarta - Indonesia

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to