Displaying 2 results from an estimated 2 matches for "ipsampl".
Did you mean:
ipsample
2010 May 20
2
Re : Manipulating Data Frames
Dear All,
I have data some thisng like this :
> data <- read.csv(file='ipsample.csv',sep=',' , header=TRUE)
> data
State Jan Feb Mar Apr May Jun
1 AAA 1 1 0 2 2 0
2 BBB 1298 1195 1212 1244 1158 845
3 CCC 0 0 0 1 2 1
4 DDD 5 11 17 15 10 9
5 EEE 18 28 27 23 23 16
6 FFF 68 152 184 1...
2010 May 19
1
Re : Adding column sum to new row in data frame
...41158845CCC 000121DDD51117
15109EEE182827232316FFF6815218413511186Total 1390 1387 1440 1420 1306
957
I am doing some thing like this, but I don't know how to merge "Total" to
"data" Or I don't know there may be a alternative way.
> data <- read.csv(file='ipsample.csv',sep=',' , header=TRUE)
> data
State Jan Feb Mar Apr May Jun
1 AAA 1 1 0 2 2 0
2 BBB 1298 1195 1212 1244 1158 845
3 CCC 0 0 0 1 2 1
4 DDD 5 11 17 15 10 9
5 EEE 18 28 27 23 23 16
6 FFF 68 152 184 13...