Skip to content

Commit

Permalink
Update hubzone_ward_breakdown.r
Browse files Browse the repository at this point in the history
  • Loading branch information
Jdharden authored Jan 31, 2019
1 parent 442e827 commit aa753db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hubzone_ward_breakdown.r
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ward_amount <- group_by(HUBZoneRaw, WARD) %>%
summarise(total_contracts = sum(federal_action_obligation )) %>%
arrange(desc(total_contracts))

ward_amount$total_contracts / sum(ward_amount$total_contracts)
ward.percent <- ward_amount$total_contracts / sum(ward_amount$total_contracts)

# //////////////////////////////////////////////////////////////////////////////

Expand Down

0 comments on commit aa753db

Please sign in to comment.