search for: wb95

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

Did you mean: w95
2001 Dec 07
2
question
...gt; > i read in data into a dataframe and (erroneously) forgot > to convert text > > into numbers. > > > > the frame was called olddata > > then i could to the following calculation: > > > > vp95<-olddata["vp95"]/olddata["wb95"] > > > > "vp95" and "wb95" are column names. > > > > in r 1.4.0, this does not work any more. > > i have to do > > > > vp95<-as.real(olddata[,"vp95"])/as.real(olddata[,"wb95"]) > >...