Skip to content

Instantly share code, notes, and snippets.

View lakshmiprabharamesh's full-sized avatar

lakshmiprabharamesh

View GitHub Profile
@lakshmiprabharamesh
lakshmiprabharamesh / import.py
Created February 8, 2022 03:21
General Import the necessary packages - pandas, numpy, seaborn, matplotlib.pyplot
#Import essential packages
# Pandas a python library used for data manupilation and analysis
import pandas as pd
# Numpy a python library used for mathematical operations on arrays
import numpy as np
# Matplotlib is a library used for plts and visualizations
import matplotlib.pyplot as plt
#Seaborn Library is based on matplotlib and used for visualizations
import seaborn as sns
# adding nice backgrounds to graphs