search for: eurodollar_vec

Displaying 1 result from an estimated 1 matches for "eurodollar_vec".

2009 Mar 26
2
Getting started,
...T) #This is attempting to get R to read the date column, which is in "mm/dd/yyyy" format #I have restricted it to the first 50 data points (to keep it simple) date_vec = as.Date(data_download[1:50,1],"%m/%d/%y") #This reads the values again for just the first 50 data points eurodollar_vec = data_download[1:50,2] #This plots the date and data values. plot(date_vec,eurodollar_vec) A few issues with the output from this: 1) The date_vec data ends up looking like this "2019-01-04" - for some reason all year 2019, irrespective of the actual year (e.g. 1971, 1972). Any sug...