Lab 14 Data Visualization

where NAME_OF_COLORMAP is one of matplotlib’s sequential or diverging colormaps like afmhot. # This code corresponds to the figure on the top right of the contour maps. import numpy as np from matplotlib import pyplot as plt n=400 xran = np.linspace(-1.5,1.5,n) yran = np.linspace(-1.5,1.5,n) X, Y = np.meshgrid(xran,yran) F=Y**2-X**3+X**2 ................
................