Displaying 1 result from an estimated 1 matches for "basedatab".
Did you mean:
basedata
2009 Sep 11
1
Simple time series questions
...separate charts:
testdata<- read.table("C:\\Files\\test chart data.csv", head = T, sep =
",",na.strings = "na")
test_date = as.Date(testdata$Date,"%d-%m-%y")
test_data_model = testdata$Model
test_date_baseA = testdata$BaseDataA
test_date_baseB = testdata$BaseDataB
plot(test_date, test_data_model,type='l',log="y")
plot(test_date, test_data_baseA,type='l',log="y")
plot(test_date, test_data_baseB,type='l',log="y")
grid()
(Clearly at this point, each chart over-writes the previous one.)
Next I try to get th...