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

Data Visualization Cheatsheet

Types of graphs covered:

  • Line graph
  • Scatter plot
  • Histogram and Frequency Distribution
  • Heatmap
  • Contour Plot
  • Box Plot
  • Bar Chart
import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
sns.set_style("ticks")
import matplotlib
matplotlib.rcParams['font.size'] = 20
matplotlib.rcParams['figure.figsize'] = (12, 6)
matplotlib.rcParams['figure.facecolor'] = '#00000000'
matplotlib.rcParams['axes.facecolor'] = '#00000000'

Line Graph