ListLinePlot oculta Inset na borda

Sep 05 2020

Tento colocar uma letra 'T' grande no final do enredo. No entanto, não pode ir além do eixo. Para alguma outra finalidade, preciso dessas Frameconfigurações. Mesmo que alguém os comente, o 'T' ainda está obviamente incompleto, embora um pouco mais longo.

ListLinePlot[Accumulate[RandomReal[{0, 1}, {100}]], PlotStyle -> Blue,
  Frame -> {True, True, True, True}, 
 FrameStyle -> {Automatic, Blue, Automatic, Red}, LabelStyle -> Large,
  Epilog -> Inset[Style["T", 50], ImageScaled[{0.5, 0.11}]]]

Respostas

3 kglr Sep 05 2020 at 09:41

Adicione a opção PlotRangeClipping -> False:

ListLinePlot[Accumulate[RandomReal[{0, 1}, {100}]], 
  PlotStyle -> Blue,
  Frame -> {True, True, True, True}, 
  FrameStyle -> {Automatic, Blue, Automatic, Red}, 
  PlotRangeClipping -> False, 
  LabelStyle -> Large, 
  Epilog -> Inset[Style["T", 50], ImageScaled[{0.5, 0.11}]]]