Skip to content

Commit

Permalink
Style fix: use <- not = for assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
tmoertel committed Feb 22, 2012
1 parent 4363e46 commit fdb1c29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions analysis.R
Expand Up @@ -55,10 +55,10 @@ county_rate <- 5.69
muni_rate <- 5.43
sd_rate <- 26.63

anti_windfall_adj_composite = ((county_rate * anti_windfall_adj_county +
sd_rate * anti_windfall_adj_muni_sd +
muni_rate * anti_windfall_adj_muni_sd) /
(county_rate + sd_rate + muni_rate))
anti_windfall_adj_composite <- ((county_rate * anti_windfall_adj_county +
sd_rate * anti_windfall_adj_muni_sd +
muni_rate * anti_windfall_adj_muni_sd) /
(county_rate + sd_rate + muni_rate))


## Compute assessment and property-tax increases
Expand Down

0 comments on commit fdb1c29

Please sign in to comment.