search for: squarefootag

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

Did you mean: squarefootage
2009 Jun 09
2
R command to join data.frames rows with identical keys?
.... By any chance is there an R command to accomplish this in one or two steps. I think I could do this in a "for" loop or something, but think there is might be another way in R to accomplish it smarter. Thanks for any info. neighborhoodInfo1_df<-data.frame(address<-c(101),squareFootage<-c(2000),lotsize<-c(0.75)) neighborhoodInfo2_df<-data.frame(address<-c(108),squareFootage<-c(3000), lotsize<-c(1.25)) neighborhoodInfo_df<-rbind(neighborhoodInfo1_df, neighborhoodInfo2_df) schoolZone1_df<-data.frame(address<-c(101), schoolZone&l...