I am trying to create a data.frame where some cells have missing values. Instead of showing NAs, I wonder if there is any way to hide the NAs? What I want essentially is like an ANOVA table as shown below.
x = rnorm(40)
y = rep(1:2, each=20)
z = rep(c(1,2,1,2), each=10)
model1 = lm(x~y * z)
model2 = lm(x~y + z)
anova(model1, model2)
#Analysis of Variance Table
#Model 1: x ~ y * z
#Model 2: x ~ y + z
#Res.Df RSS Df Sum of Sq F Pr(>F)
#1 36 38.931
#2 37 39.248 -1 -0.31705 0.2932 0.5915
The output is above. If you try to access those blank cells, you will get NAs
anova(model1, model2)[1,4]
#[1] NA
Thanks in advance!!
anova(model1,model2)the NAs in the returned object (for example in[1,4]as you noted) are not shown, as you requested. So what do you mean by "not show"? What are you doing that shows them? – mathematical.coffee May 8 '12 at 0:56