I am working with an imported csv file y<- read.csv("y.csv",header=T,sep=",")
and I get this error:
Error in merge.xts(..., all = all, fill = fill, suffixes = suffixes): 'NA' not allowed in 'index'
However I do not have any NA in the data. I have tried
y <- na.omit(y)
but I still get the same error.
I would be grateful for your help.