I have an array that looks like this
cplr = array([ 0.01828922, 0.01972157, 0.02342053, ..., 0.25928021,
0.26352547, 0.26883406])
If I say
import matplotlib.pyplot as plt
plt(cplr)
TypeError: 'module' object is not callable
How do I plot the contents of a numpy array?
question from:https://stackoverflow.com/questions/18423603/simple-plot-in-python-of-a-numpy-array