Análise de Marketing: Prevendo Churn de Clientes em Python
Mark Peterson
Director of Data Science, Infoblox
A biblioteca seaborn permite criar gráficos informativos e atraentes com facilidade
Construída sobre matplotlib
import matplotlib.pyplot as plt import seaborn as snssns.distplot(telco['Account_Length'])plt.show()

sns.boxplot(x = 'Churn',
y = 'Account_Length',
data = telco)
plt.show()

sns.boxplot(x = 'Churn',
y = 'Account_Length',
data = telco)
plt.show()

sns.boxplot(x = 'Churn',
y = 'Account_Length',
data = telco)
plt.show()

sns.boxplot(x = 'Churn',
y = 'Account_Length',
data = telco)
plt.show()

sns.boxplot(x = 'Churn',
y = 'Account_Length',
data = telco)
plt.show()

sns.boxplot(x = 'Churn',
y = 'Account_Length',
data = telco)
plt.show()

sns.boxplot(x = 'Churn',
y = 'Account_Length',
data = telco)
plt.show()

sns.boxplot(x = 'Churn',
y = 'Account_Length',
data = telco,
sym="")
plt.show()

sns.boxplot(x = 'Churn',
y = 'Account_Length',
data = telco,
hue = 'Intl_Plan')
plt.show()

Análise de Marketing: Prevendo Churn de Clientes em Python