Skip to content
Prev 305870 / 398502 Next

write.table: strange output has been produced

It would also be helpful if you could provide the output of 'str' for
all the objects that you are using.

e.g.,  str(statdata)    str(extra)


Also in creating your data.frame, use "stringsAsFactors = FALSE":

extra = data.frame(kogdefline=rep(NA,n)
    , kogClass = rep(NA,n)
    , kogGroup = rep(NA,n)
    , stringsAsFactors = FALSE
)
On Wed, Sep 19, 2012 at 12:12 PM, Igor <igorc at essex.ac.uk> wrote: