Something like this?
Plot[Piecewise[{{x, x <= 1}, {1/x^2, x > 1}}], {x, 0, 4},
Ticks -> {{{1, R}}, {{1, Q/(4 Pi Subscript[\[Epsilon], 0] R^2)}}},
GridLines -> {{1}, {1}}, GridLinesStyle -> Dashed,
AxesLabel -> {r, Style["E", Italic]}, PlotStyle -> Red,
PlotRange -> {0, 1.2}]
or like this:
scale = 2;
pl = Plot[
Piecewise[{{scale x, x <= 1}, {scale/x^2, x > 1}}], {x, 0, 4},
Ticks -> {{{1, R}}, {{scale,
Q/(4 Pi Subscript[\[Epsilon], 0] R^2)}}},
GridLines -> {{1}, None}, GridLinesStyle -> Dashed,
AxesLabel -> {r, Style["E", Italic]}, PlotStyle -> Red,
AspectRatio -> Automatic,
Prolog -> {EdgeForm[Thick], Pink, Disk[{0, 4}], Black,
Thickness[.005], Arrow[{{0, 4}, {1, 4}}],
Text[Style[R, 20], {.5, 4.2}]},
PlotRange -> {{-1, Automatic}, {0, 5.1}}]