I am very new to R so apologies if I get any of the terminology wrong when I explain this problem.
I have a set of daily returns data in a csv file that I have managed to convert to an xts object. The data is in the format:
HighYield..EUR. MSCI.World..EUR.
2002-01-31 0.0144 0.0031
2002-02-01 0.0056 -0.0132
2002-02-02 0.0373 0.0356
2002-02-03 -0.0167 -0.0644
2002-02-04 -0.0062 -0.0332
2002-02-05 -0.0874 -0.1112
...
I want to create a script that will find the first business day of the month (from the range of values in the index) and then create a new xts object with these returns in it.
For example, after the script has run I would have an xts object in the format:
HighYield..EUR. MSCI.World..EUR.
2002-01-31 0.0144 0.0031
2002-02-28 0.0011 -0.0112
2002-03-31 0.0222 0.0224
2002-04-30 -0.0333 -0.0223
2002-05-30 -0.0011 -0.0012
2002-06-30 -0.0888 -0.0967
...
Can someone help me please? and if possible explain what each part of the script is doing.