Displaying 1 result from an estimated 1 matches for "neighborhoodinfo1_df".
2009 Jun 09
2
R command to join data.frames rows with identical keys?
...oolZone" key to the neighborhoodInfo_df data.frame.
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&...