Displaying 1 result from an estimated 1 matches for "kumat".
Did you mean:
kumar
2010 Nov 09
2
help to merge two data frame if name matches
...t; 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
3 kumat 1 1.00 1.00
4 mmm 1 10...