I use the Rstudio on Linux Ubuntu 18.04
The problem is that I have to represent lines < 1 via a "segments" function of the package {graphics} with a width variable (lwd in function) and it is not possible to visualize the values for lwd<1.
segments(x0, y0, x1 = x0, y1 = y0,
col = par("fg"), lty = par("lty"), lwd = par("lwd"),
...)
I have consulted the online help, it is written:
The line width, a positive number, by default at 1. The interpretation is device specific and some devices do not use line widths less than 1. (See the help on the device for more details on interpretation.)
I dug into the subject and came to the conclusion to use windows on an old bike and miracle I visualize the lines <1 wide.
Are there any possibilities to modify the graphic parameters at the software and not hardware level?