Learn practical skills, build real-world projects, and advance your career

System Setup
List of all the python libraries that are required

numpy

pandas

matplotlib

seaborn

wordcloud

emoji

jovian

Run the following command to get all the listed python libraries

pip install numpy pandas matplotlib seaborn wordcloud emoji jovian --upgrade

Te check whether do you all the required libraries the next should run without any errors

!pip install jovian opendatasets --upgrade --quiet

Let's begin by importing the required libraries

import re
import jovian
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
from wordcloud import WordCloud, STOPWORDS
import emoji
from collections import Counter

Let us save and upload our work to Jovian before continuing.