Re: [R] Help with fmodel in statisticalModeling package

2019-09-06 Thread Paul Johnston
Johnston Cc: R-help@r-project.org Subject: Re: [R] Help with fmodel in statisticalModeling package I have no clue about the internals of fmodel() (and no real intention of getting one...), but pragmatically and to avoid getting sidetracked, how about converting the bogus variable to zero-one

Re: [R] Help with fmodel in statisticalModeling package

2019-09-06 Thread peter dalgaard
I have no clue about the internals of fmodel() (and no real intention of getting one...), but pragmatically and to avoid getting sidetracked, how about converting the bogus variable to zero-one: CPS85$bogus <- as.numeric(rnorm(nrow(CPS85)) > 0) -pd > On 6 Sep 2019, at 11:57 , Paul Johnston >