/Line-chat-visualize

Line chat visualize

Primary LanguagePython

Data visualization from LINE chat. 💬

Requriment.

  • pandas
  • scipy
  • datetime
  • matplotlib
  • seaborn

How to export chat history.

export chat history

Getting start.

run this file Line-Visualization.ipynb put your chat history name instead of 'LINE_Chat_with_someone.txt'

chatName = 'LINE_Chat_with_someone.txt'
chat_data = bf.OpenFile(chatName)

bf.summaryInformation(chat_data) Show summary visualizes from the chat history. summary plot

bf.availableDay(chat_data) Show all of date in chat history.

bf.dateFilter(data=chat_data, month=11, year=2019) Select a specific date in chat history.

bf.respondHist((filtered_data), brange=60) Show histogram of chat respond(minute) and average respond time from each user. chat respond

bf.TrendPlot(filtered_data, method='Daily') In this function you can change method in this list ['Daily', 'Weekday', 'Month']