Setup.

library(VennDiagram)

2.7

Proportional contingency table:

##                 Swing Not Swing Total
## Independent        11        24    35
## Not Independent    12        53    65
## Total              23        77   100
  1. Are being Independent and being a swing voter disjoint, i.e. mutually exclusive?
  1. Draw a Venn diagram summarizing the variables and their associated probabilities.
draw.pairwise.venn(area1 = 35, area2 = 23, cross.area = 11, 
                   category = c('% Independent', '% Swing Voter'), 
                   cat.pos = c(3, -1))

## (polygon[GRID.polygon.1], polygon[GRID.polygon.2], polygon[GRID.polygon.3], polygon[GRID.polygon.4], text[GRID.text.5], text[GRID.text.6], text[GRID.text.7], text[GRID.text.8], text[GRID.text.9])
  1. What percent of voters are Independent but not swing voters?
  1. What percent of voters are Independent or swing voters?
  1. What percent of voters are neither Independent nor swing voters?
  1. Is the event that someone is a swing voter independent of the event that someone is a political Independent?