I produced a plot using
Show[
ListPlot[{{1.1,3.9},{2.9,3.1}},
Axes->None,Frame->{{True,False},{True,False}},PlotRange->{{1,3},{3,4}}
],
"FrameTicks"->{{1,2,3},{{3,"low"},{4,"high"}}}
]
and I wanted to save the plot to a pdf. To save the plot I enter the line
Export["plot.pdf",<xxx>];
and I copied the plot and pasted where the <xxx> is. However, when I go to open the pdf, the y axes are missing. Why is this? Is there a workaround?

Edit | Copy As | Bitmap– Bob Hanlon Sep 01 '17 at 15:20