churn <- read.csv(file = "../churn.txt",stringsAsFactors=TRUE)
churn[1:10,]
sum.churn <- summary(churn$Churn)
prop.churn <- 483/(2850+483)
counts <- table(churn$Churn,churn$Int.l.Plan,dnn=c("Churn","International Plan"))
counts
barplot(counts,legend=rownames(counts),col=c("blue","red"),ylim=c(0,3300),ylab="Count",xlab = "International Plan",main="Comparison Bar Chart: Churn Proportionsby International Plan")
box(which="plot",lty="solid",col="black")
> counts
International Plan
Churn no yes
False. 2664 186
True. 346 137