Skip to content
Prev 77505 / 398502 Next

Extract data from edit chart

By specifying space like that you are specifying
that the columns be factors.  If you want them
to be character columns use 

abc <- data.frame(Parameter = 1:10, lo = I(""), hi = I(""))

and if you want them to be numeric columns specify something
that is numeric like 0, NaN, Inf, -Inf or something like that, e.g.

abc <- data.frame(Parameter = 1:10, lo = 0, hi = 0)
On 9/20/05, Chun-Ying Lee <u9370004 at cc.kmu.edu.tw> wrote: