Displaying 2 results from an estimated 2 matches for "breceiv".
Did you mean:
receiv
2010 Nov 09
2
help to merge two data frame if name matches
...9;main.csv',sep=',' , header=TRUE)
> main
name id memory storage
1 mohan 1 100.2 10
2 ram 1 200.0 100
3 kumar 1 400.0 50
4 xxx 1 100.0 40
5 aaa 1 800.0 45
6 mount 1 200.0 80
$cat other.csv
name,ip,bsent,breceived
mohan,1,12.00,0.01
xxx,1,00.00,1.110
kumat,1,1.00,1.00
mmm,1,10.00,8.08
own,1,20.13,12.08
per,1,1.89,0.89
> other <- read.csv(file='other.csv',sep=',' , header=TRUE)
> other
name ip bsent breceived
1 mohan 1 12.00 0.01
2 xxx 1 0.00 1.11...
2010 Nov 07
3
help to sum up data frame
Dear All,
I have a data frame like this:
name ip Bsent Breceived
a 1 0.00 0.00
a 2 1.43 19.83
a 1 0.00 0.00
a 2 1.00 1.00
b 1 0.00 2.00
b 3 0.00 2.00
b 2 2.00 0.00
b 2 2.00 0.00
b 1...