search for: r3110_stage

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

2009 Sep 28
2
Help with time series
...These lines work. But these do not: R3110_SubC <- read.table("A:\\Data\\Output\\Sparrow\\Hydro_Data\\R3110_Annual.txt", header=TRUE, skip=1, sep=",", stringsAsFactors=FALSE) R3110_SubC$GS <- rep(5.10, dim(R3110_SubC)[1]) R3110_SubC$Depth <- as.numeric(R3110_SubC$R3110_stage) - as.numeric(R3110_SubC$GS) R3110_SubC.ts <- ts(data=R3110_SubC, frequency = (1), start=c(1984, 1), end=c(2009, 1)) Warning message: NAs introduced by coercion I am asured that the input data are the same in each input file, yet some coerce correctly while others result in the error which pr...