I need a vector containing the days of the week very often, but I always type it out:
days.of.week <- c(\"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\",
There you go, the vector of weekdays "Monday", ..., "Sunday":
days.of.week <- weekdays(x=as.Date(seq(7), origin="1950-01-01"))