Displaying 2 results from an estimated 2 matches for "saumyha".
Did you mean:
saumya
2012 Dec 21
1
How to run chaid in R
Could you please let me know how to run chaid in R.
Thanks,
Saumyha
[[alternative HTML version deleted]]
2012 Dec 20
2
Filling Lists or Arrays of variable dimensions
Following problem:
Say you have a bunch of parameters and want to produce results for all combinations of those:
height<-c("high","low")
width<-c("slim","wide")
then what i used to do was something like this:
l<-list()
for(h in height){
l[[h]]<-list()
for(w in width){
l[[h]][[w]] <- doSomething()
}
}
Now those parameters aren't