Anova and T-Test for Work Value in Revere

One of my classmates (Alissa) has been using a measure that shows whether the owner of a property is a resident of Revere. This is the code that she contributed to make this measure for our group midterm. RevereTA <- read.csv(“valuation.csv”) RevereTA$Revere <- ifelse(RevereTA$OWN_CITY == “REVERE” | RevereTA$OWN_CITY == “Revere”, 1, 0) RevereTA$NotRevere <- ifelse(RevereTA$OWN_CITY … More Anova and T-Test for Work Value in Revere

T test and ANOVA using the Investment in Property variable

I will be using the Investment in Property variable that I created in Midterm 2 for this assignment as well. Just to recap: The variable represents properties where any or both of the following were true: Remodel of kitchen and/or bathroom Renovation work conducted –more than three building permits sought –within one year of sale … More T test and ANOVA using the Investment in Property variable

Comparing Revere Neighborhoods for City Orderliness

In this analysis, we will do two statistical tests in R to further demonstrate our Latent construct- City Orderliness. The two tests are: T-test ANOVA test (Analysis of Variance) Before doing analysis, let’s talk about the what these two tests are used for. T-test and ANOVA are two statistical techniques use to test the hypothesis. … More Comparing Revere Neighborhoods for City Orderliness

Comparing Building Types and Owner vs. Non-Owner Occupied Buildings in Arlington

In this blog post, I will compare groups using both the student t-test and ANOVA. These groups will come from the most recent Arlington group dataset in which we not only have tax assessors data, but also ecometrics developed by our group. In particular, I will try to see if the significance between buildings owned … More Comparing Building Types and Owner vs. Non-Owner Occupied Buildings in Arlington