No, because 11% identify as both Independent and swing voters. They are not mutually exclusive.
swing_voters <- matrix(c(0.12, 0.11,0.23,0.53,0.24,0.77,0.65,0.35,1.00), byrow = TRUE, nrow = 3)
row.names(swing_voters) <- c("Swing Voters", "Not Swing Voters", "Total")
colnames(swing_voters) <- c("Rep & Dems", "Independent", "Total")
swing_voters
## Rep & Dems Independent Total
## Swing Voters 0.12 0.11 0.23
## Not Swing Voters 0.53 0.24 0.77
## Total 0.65 0.35 1.00
grid.newpage()
venn.plot <- draw.pairwise.venn(area1 = 35,
area2 = 23,
cross.area = 11,
category = c("Indepedent", "Swing Voters"),fill = c("blue", "red"))
Using the table, we can see that 24% of the voters are Independent and not swing voters
.35 + .23 - .11
## [1] 0.47