Vectors of 12 months of returns, and month names

ret <- c(5, 2, 3, 7, 8, 3, 5, 9, 1, 4, 6, 3) months <- c(“Jan”, “Feb”, “Mar”, “Apr”, “May”, “Jun”, “Jul”, “Aug”, “Sep”, “Oct”, “Nov”, “Dec”)

Add names to ret

names(ret) <- months