Displaying 1 result from an estimated 1 matches for "doubleplus".
2000 Oct 23
0
Probable bug in RODBC 0.7.x (PR#700)
...e already reported it informally on R-help and
R-devel.
The current (0.7) version of RODBC has a problem with missing values. It
correctly
gets missing "character" values (as blanks), but puts the last non-missing value
of
the same variable in place of missing "numeric" values. Doubleplus ungood ...
Example :
In database : ==> What I got in R What I expected
1 Foo 1.0 1 "Foo" 1.0 1 "Foo" 1.0
2 2.0 2 "" 2.0 2 "" 2.0
3 Bar 3 "Bar" 2.0 3 "Bar"...