Skip to content

Instantly share code, notes, and snippets.

@milktrader
Created March 21, 2013 01:51
Show Gist options
  • Save milktrader/5210093 to your computer and use it in GitHub Desktop.
Save milktrader/5210093 to your computer and use it in GitHub Desktop.
Three lines to find the highest rate on the Ten year note
julia> using TimeSeries
julia> dgs = imfred("DGS10");
julia> maxrows(dgs)
1-element TimeStamp Array:
1981-09-30 | 15.84
@milktrader
Copy link
Author

You can also do it in two lines by combining the last two

julia> maxrows(imfred("DGS10"))
1-element TimeStamp Array:
 1981-09-30  |  15.84

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment