[R] Strange Bug in R

Berend Hasselman bhh at xs4all.nl
Tue Oct 6 10:28:35 CEST 2015


> On 6 Oct 2015, at 09:24, Neverstop <neverstop at hotmail.it> wrote:
> 
> Hi all.
> I don't understand why R works this way:
>> rm(list=ls())
>> require(foreign)
>> dataset <- read.dta("http://www.ats.ucla.edu/stat/data/ologit.dta")
>> min(dataset$gpa)
> [1] 1.9
>> min(dataset$gpa)>=1.90
> [1] FALSE
>> min(dataset$gpa)>=1.9
> [1] FALSE
>> min(dataset$gpa)>1.89
> [1] TRUE
> Shouldn't I get 3 TRUEs?
> Am I missing something?
> Thank you.
> 
> 

See R FAQ 7.31  in https://cran.r-project.org/doc/FAQ/R-FAQ.html
It should provide clarification for your puzzlement.

Berend


> 
> 
> --
> View this message in context: http://r.789695.n4.nabble.com/Strange-Bug-in-R-tp4713175.html
> Sent from the R help mailing list archive at Nabble.com.
> 
> ______________________________________________
> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.



More information about the R-help mailing list