Displaying 1 result from an estimated 1 matches for "skfriedman".
2009 Jan 30
2
help with time series
...orth of daily
hydrologic water stage data (column 2).
R seems to get confused by the format of this input not knowing what to do
with the date field, and also deciding to treat everything as a level.
I'm reading the data as follows:
mystage <- read.table("C:\\Documents and
Settings\\skfriedman\\Desktop\\R-scripts\\stage.txt", header = TRUE)
looking at the data I get the following:
mystage[1:4,]
[1] 4/2/1953,7.56 4/3/1953,7.56 4/4/1953,7.54 4/5/1953,7.53
20195 Levels: 1/1/1954,8.72 1/1/1955,8.48 1/1/1956,7.94 1/1/1957,7.88
1/1/1958,8.5 ... 9/9/2007,8.84
>
What I'd like is...