I have the cdf:
F_X(x) = 0 for x<=10
(x-10)^3/1000 for 10<x<20
1 for x=>20
I need to generate a sample of 10,000 from X. how can I do so in R?
I'm extremely new to R, so would appreciate any help
I have the cdf:
F_X(x) = 0 for x<=10
(x-10)^3/1000 for 10<x<20
1 for x=>20
I need to generate a sample of 10,000 from X. how can I do so in R?
I'm extremely new to R, so would appreciate any help
Copyright © 2021 Jogjafile Inc.
Your cdf function can be written in R as:
Which means we can plot it for the region [10, 20] like this:
Effectively, what we want to do is generate a sample from the uniform distribution between 0 and 1, then imagine these numbers being on the y axis. We then want to "read off" the equivalent points on the x axis to generate a sample from
X
. To do this we just rearrange the equation to find its inverse:Which means our sample can be generated like this:
Now we can plot the empirical cdf of this sample with the theoretical cdf and ensure they match:
This shows us that the emprical cdf of
X
matches the theoretical cdf, indicating thatX
is indeed sampled from the correct distribution.As a further demonstration, note the the pdf of
X
will be the first derivative of the cdf. It will therefore be 0 everywhere except between 10 and 20, where it will be:So if we plot this over a density histogram of
X
we should get a close match: