Reputation: 2185
I use R-Studio. I've run this linear regression model:
gn<- lm(NA.~ I(PC^0.25) + I(((PI)^2)),data=DSET)
Then, I ommited the first 11 elements of the model with the following command:
newgn<-update(gn,subset=-c(1:11))
I would like to have a look on the console at the first 11 elements which were ommited from the model.
Upvotes: 0
Views: 91
Reputation: 12654
Try
model.frame(gn)[1:11,]
This will show you the first 11 elements (rows) that were used in thegn
linear regression.
Upvotes: 2