I need to put in code a piecewise function and store generated values in a data frame. The rules are the following:
- I have an object X that is generated by a Bernoulli(1/3).
- If X=0, another object, Y, is generated by E = Exponential(1).
- If X=1, Y is generated by E if E <= P, and by (P + EL) if E > P, where P is a constant (1, for example) and EL = Exponential(Lambda) independent from E.
- I want to generate a data frame with 100 samples of X and Y obtained using this method, and additionally, do this process 10000 times (or in other words, generate 10000 data frames).
I tried to do something like this, but as I'm a total novice using R, I couldn't figure out how to define properly each element, and obviously, how to store my results in a data frame.
Here's the "code" I did:
test <- function(lambda,p) {
for (i in 1:10000) { # Number of simulations that I want to do.
for(j in 1:100) { # Sample size of each simulation / data frame.
x <- rbinom(1,1,1/3)
e <- rexp(1,1)
if (x==0) {y <- e}
else {
if (e<=p) {y <- e}
else {y <- p + rexp(1, lambda)}
}
}
}
But even before testing I know it's impossible that it works properly. The data frame that I want to make only may contain values for X and Y.
I know this could be a very basic question, so thank you very much for your answers.