I have a plot that I have created as such using a vector c
hist_c=histogram(c,binsize=0.002,locations=locs_c,min=0.000,max=1.000)
pdf_c=float(hist_c)/n_elements(c)
ppdf_c=plot(locs_c,pdf_c,xtitle='c',ytitle='freq')
I would like to add the vertical line x=0.92
over the line plot I created. The function oplot
requires an array, so I am not sure how I can do this.