#!/usr/bin/env python3 from numpy import genfromtxt import matplotlib import matplotlib.pyplot as plt def main(): data = genfromtxt('output.csv', delimiter=';') fig, ax = plt.subplots() im = ax.imshow(data) plt.show() if __name__ == '__main__': main()