search for: test_data_model

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

2009 Sep 11
1
Simple time series questions
...com/file/p25398419/test%2Bchart%2Bdata.csv test+chart+data.csv . I can read it in OK, and create 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...