The Political Influence and Issue Tracker (PIIT)

I’ve had an idea for a couple of years for a project. The project would map the relationships between elected officials, their donors, and the issues that both care about.

So it would capture data on four distinct entities:

  1. Politicians

  2. Donors

  3. Issues

  4. Votes

And then it would show the relationships between them.

Data capture might look like this:

  • Politician

    • Top donors

    • Top issues (listed as pro-$SOMETHING, con-$SOMETHING)

    • Votes (counters for con-GUN, pro-LIFE, con-drilling, etc. based on voting record (see below)

  • Donor

    • Top donations (maps to Politicians)

    • Top issues

  • Issues

    • Top Politicians that support them

    • Top Donors that support them

  • Votes

    • Name of legislation and goal, e.g., Markson-Billey(Con-GUN)

    • The Politicians that voted for (increments their counter for that)

    • The Politicians that voted against (increments their counter for that)

Connecting the dots

From here we ask questions:

Unsupervised Learning — Security, Tech, and AI in 10 minutes…

Get a weekly breakdown of what's happening in security and tech—and why it matters.

  1. For a given Donor, what are their top Issues?

  2. For each Donor, who are their top Politicians (that they give to)?

  3. For each Politician, what are their top Donors?

  4. For each Issue, what are the top Politicians and Donors that support it?

  5. Do Politicians support the issues that they receive the most money on?

The next thing to track is voting, which is trickier. You basically have to make a new table called Votes, and then tag them as pro or con for a given issue. Then you note which side each Politician fell on.

Of course, to some degree this should be expected. But if the votes always follow the money you know you have an issue.

Ideally there would be a composite rating that could be built from a number of things, such as money taken in, percentage of similarity between donor goals and the politician’s goals, etc.

# Sample rating

Corruption Rating: 74% (Compromised)

There would be flaws in it, of course, and there would be infinite opportunity to improve it by removing subjectivity, but even a basic version could shine some much needed light on things.

Notes

  1. Donors are sometimes people and sometimes entities, or lobbies. The Koch Brothers would be a donor, for example, as would the NAACP and the NRA.

  2. The voting piece is the hardest, and requires the most subjectivity because you have to mark legislation binarily as pro or con a given issue, when arguments can be made for all sorts of interpretations.

  3. I was re-inspired to start looking at this by a friend, who did something similar in Perl. God bless him.

Related posts: