search for: cvsaction

Displaying 2 results from an estimated 2 matches for "cvsaction".

Did you mean: cvsactions
2006 Aug 31
2
Combine 'overlapping' dataframes, respecting row names
...really addressed my issue, I'm afraid. I've also examined the cbind and rbind documentation but nonetheless here I am writing to r-help ;) This is what I have (the row names are dates used for conversion to an irregular time series with the its package): > cvsFrame cvsactions 2002-11-15 4 2002-12-15 9 2003-01-15 5 2003-02-15 5 > downloadsFrame downloads 2002-09-15 1 2002-10-15 2 2002-11-15 12 2002-12-15 8 (notice how the dates are overlapping?) The output I'd like is:...
2007 Feb 14
1
newbie: logical AND, OR in selectors ?
...export -r $rev $name" } if (($user != undef) and ($rev != undef) { $cvscmd = "cvs -d $user@$source export -r $rev $name" } Or are there other ways of achieving this? Perhaps: $cvsroot = $user ? { undef => "$source", default => "$user@$source" } $cvsaction = $rev ? { undef => "checkout $name", default => "export -r $rev $name" } $cvscmd = "/usr/bin/cvs -d $cvsroot $cvsaction" Actually, I think that may just work. Is this a sensible way to go? I guess it would still be useful to use AND and OR ... Nb,...