search for: house2

Displaying 2 results from an estimated 2 matches for "house2".

Did you mean: house
2006 Jul 15
0
How to Interpret Results of Regression in R
...---------------------------------------------------------------------- Call: lm(formula = I(jhnet^1) ~ as.factor(parkfee) + fare + as.factor(ohouse) + tripMIN + as.factor(Devt2) + cityarea + coreDistance + density + as.factor(corridor1) + as.factor(ic) + OD_total + nfirm_dong + house1 + house2 + house3 + house4, data = sdi.data[w, ], na.action = na.omit, singular.ok = TRUE) Residuals: Min 1Q Median 3Q Max -0.27703 -0.02942 0.00552 0.02325 0.18894 Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept)...
2008 Dec 18
1
inserting zero instances with zeroes in a matrix
Hi all, Suppose I had the below example where a survey was carried out recording the number of each type of pet in each house count<-c(2,1,2,1,2,3,4) house<-c("house1","house1","house2","house3","house4","house4","house4") pet<-c("dogs","cats","dogs","dogs","budgie","cat","hamster") d.f<-data.frame(house,pet,count) How would I acheive a dataframe that had ever...