Displaying 1 result from an estimated 1 matches for "estse".
Did you mean:
este
2009 Jul 09
2
naming of columns in R dataframe consisting of mixed data (alphanumeric and numeric)
...following dataframe tresults2.
Notice that column 1 does not have a column heading.
Tresults2:
[,1]
estparam 18.00000
nullval 20.00000
. . .
ciWidth 2.04622
HalfInterval 1.02311
pertinent code:
results<-cbind( estparam, nullval, t, pv_left, pv_right, pv_two_t,
estse, df, cc, tbox, llim, ulim, ciWidth, HalfInterval)
tresults<-round((results),5)
tresults2<-data.frame(t(tresults))
names(tresults2)<-c("Statistic ", "Value")
tresults2
===========================================================================================
After tra...