I estimated a linear regression model by using the quantreg
package. I now want to display the results graphically by using the plot()
function:
plottest = plot(summary(QReg_final), parm=2, main="y",ylab="jjjjj")
The result is the following (I can only link the image yet):
As you can see at the very left, the description of the y-axis is cut off. I then tried to adjust the margin parameters, but it seems to have zero influence on the plot. For example:
par(mar=c(10,10,2,2))
When I now run the above mentioned code, it results in the exact same plot. On the other hand, when plotting simple data (and not summary()
of a quantile regression rq()
) the margins are adjusted and the plot displays the new vector of margins.
I would appreciate help on this. Thank you.