Hi all,
Suppose I have to letters 'u' and 'd'. Now I want to find all
combinations like that :
uuuuuu
uuuuud
uuuudu
.........
........
dddddd
This type of combination generally required for Option Pricing in
financial/derivative market. Here generally 'u' means: up-move and
'd' means down move of price like Stock price etc.
Is there any easy way in R for doing that?
Regards,
---------------------------------
[[alternative HTML version deleted]]
Benilton Carvalho
2008-Mar-01 16:01 UTC
[R] A question on getting all possible combinations
target = c("u", "d")
apply(expand.grid(rep(list(target), 6)), 1, paste, sep="",
collapse="")
b
On Mar 1, 2008, at 9:13 AM, Megh Dal wrote:
> Hi all,
>
> Suppose I have to letters 'u' and 'd'. Now I want to find
all
> combinations like that :
>
> uuuuuu
> uuuuud
> uuuudu
> .........
> ........
> dddddd
>
> This type of combination generally required for Option Pricing in
> financial/derivative market. Here generally 'u' means: up-move and
> 'd' means down move of price like Stock price etc.
>
> Is there any easy way in R for doing that?
>
> Regards,
>
>
> ---------------------------------
>
> [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at 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.