[R] Nested For Loop
arun.gurubaramurugeshan
arun.gurubaramurugeshan at Autozone.com
Thu Jun 28 23:03:11 CEST 2012
I am creating a nested for loop and following are the codes I'm using, but I
am not acheiving what I want.
I have a vector
d<-151:159
I have another vector
e<-e<-c("apple", "orange", "banana")
I need to create f as
151apple
151orange
151banana
.
.
159apple
159orange
159banana
Here is how I wrote nested for loop...
for (i in 1:length(d))
{ for (j in 1:length(e))
{
x[j]<-paste(d[i],e[j],sep="")
print(x[j])
}
}
The result of the above codes is....
> for (i in 1:length(d))
+ { for (j in 1:length(e))
+ {
+ x[j]<-paste(d[i],e[j],sep="")
+ print(x[j])
+ }
+ }
[1] "151apple"
[1] "151orange"
[1] "151banana"
>
What do I need to do this looping produce the desired result.
Thanks
Arun
----
--
View this message in context: http://r.789695.n4.nabble.com/Nested-For-Loop-tp4634804.html
Sent from the R help mailing list archive at Nabble.com.
More information about the R-help
mailing list