search for: fvm0

Displaying 1 result from an estimated 1 matches for "fvm0".

Did you mean: fm0
2010 Mar 08
2
Data.frame issue (pls help)
Hi: I want to obtain a particular value from a data.frame. Following is my dataframe: > Quotes BID ASK Name CT2 GOVT 99.92969 99.9375 CT2 TUM0 COMDTY 108.53125 108.5469 TUM0 CT5 GOVT 100.10156 100.1094 GT5 FVM0 COMDTY 115.56250 115.5703 FVM0 TYM0 COMDTY 116.93750 116.9531 TYM0 If I try to run: QuoteTUM0BID = Quotes[Quotes$Name %in% "TUM0", "BID"] and print QuoteTUM0BID, I get 108.5312, instead of 108.53125 as an answer. Please let me know why is it ignoring the last digit. Addi...