Essentially, I am trying to plot a vertical line at the axis position x=1 that has the -.k styling, however, it seems that I cannot use this kwarg within the axvline argument:
pyplot.axvline(x=1,ymin=0,ymax=0.35, '-.k')
Returns the error:
File "<ipython-input-70-04f296edd639>", line 7
pyplot.axvline(x=1,ymin=0,ymax=0.35, '-.k')
SyntaxError: non-keyword arg after keyword arg
Hence, could someone advise me on what the correct kwarg is for this situation...
