Learn practical skills, build real-world projects, and advance your career
import pandas as pd
import re
from unidecode import unidecode
from tqdm import tqdm
%matplotlib inline
pd.set_option('display.max_colwidth', -1)
import matplotlib.pyplot as plt
import plotly.graph_objects as go
import plotly.express as px
import chart_studio.plotly as py
# Offline mode
from plotly.offline import init_notebook_mode, iplot
init_notebook_mode(connected=True)
plt.style.use('ggplot')
df = pd.read_csv(r'C:\Users\Phuong Bio\Desktop\phuongpv\Working Data\chatbot\#1 Data\fbchat_full_December_2019.csv')
df.head()
df_ = df[['customer', 'label']]