Hi, If the number where you want the plot to start is 2.7, then change the plot command to
Plot[brf[w], {w, 2.7, 12}, PlotRange -> {{0, 12}, {0, 1}}]
Plot[]
will automatically choose the axes origin. If it's not (0,0) and you would like it to be, then you can control the placement of the axes with the option AxesOrigin
. For instance,
Plot[brf[w], {w, 0, 12}, PlotRange -> {{0, 12}, {0, 1}}, AxesOrigin -> {0, 0}]