2
I have an excel data table that was organized in a strange way. Columns are months and rows are days. In the file, after 31 days, resumes the account of the day. In this case, begins another year. I wanted to know how I can turn this data into a regular time series. Knowing that the series starts in 1980, it has how to organize?
Thanks in advance.
dice
read.table(text = "DIA;JAN;FEV;MAR;ABR;MAI;JUN;JUL;AGO;SET;OUT;NOV;DEZ
1;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
2;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
3;NA;NA;.0;.0;.0;.0;4.4;.0;.0;.0;.0;.0
4;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
5;NA;NA;.0;.0;.0;.0;.0;1.9;.0;.0;.0;.0
6;NA;NA;.0;.0;.0;3.4;15.4;.0;.0;.0;.0;.0
7;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
8;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
9;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
10;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
11;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
12;NA;NA;.0;1.9;.0;.0;.0;.0;.0;.0;.0;.0
13;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
14;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
15;NA;NA;.0;.0;.0;7.0;.0;.0;.0;.0;.0;.0
16;NA;NA;.0;.0;.0;.0;2.2;.0;.0;.0;.0;.0
17;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
18;NA;NA;.0;.0;.0;.0;1.3;.0;.0;.0;.0;.0
19;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
20;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
21;NA;NA;.0;.0;2.5;.0;1.7;.0;.0;.0;.0;.0
22;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
23;NA;NA;.0;.0;.0;6.8;.0;.0;.0;.0;17.7;.0
24;NA;NA;.0;.0;.0;2.4;.0;3.1;.0;.0;.0;.0
25;NA;NA;.0;.0;.0;2.1;.0;4.0;.0;.0;.0;.0
26;NA;NA;.0;.0;.0;.0;.0;2.6;.0;.0;.0;.0
27;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
28;NA;NA;.0;.0;1.8;.0;.0;.0;.0;.0;.0;.0
29;NA;NA;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
30;NA;NA;12.5;.0;.0;.0;.0;.0;.0;.0;.0;.0
31;NA;NA;.0;NA;.0;NA;.0;.0;NA;.0;NA;.0
1;25.8;.0;.0;.0;.0;.0;7.2;.0;.0;.0;.0;.0
2;6.5;17.2;.0;.0;.0;.0;.0;.0;.0;.0;.0;.0
3;.0;.0;60.0;3.5;.0;.0;.0;.0;.0;.0;3.5;.0
4;1.8;.0;10.1;.0;.0;11.5;.0;.0;.0;.0;.0;.0
5;.0;.0;10.6;.0;.0;.0;.0;.0;.0;.0;.0;.0
6;.0;.0;21.7;.0;.0;.0;.0;.0;.0;.0;.0;.0
7;.0;.0;28.8;3.4;.0;.0;.0;.0;.0;.0;.0;.0
8;.0;6.8;59.8;.0;4.6;.0;.0;.0;.0;.0;.0;.0
9;.0;.0;13.6;.0;.0;.0;.0;.0;.0;.0;.0;.0
10;.0;.0;19.1;.0;.0;.0;.0;6.5;.0;.0;.0;.0", header = TRUE, sep = ";")