The lwd in R is used to specify the width of plot lines. It is a parameter that can be set in various plotting functions, such as plot(), lines(), abline(), etc.
plot( x, y, pch = 1, cex = 1, col = 1,
bg = 0, lwd = 1, lty = 1, type = "p", add = FALSE )
As you can see, one of the arguments is lwd, and its value is 1.
x <- c(1, 2, 3, 4, 5, 6, 7)
y <- c(1, 8, 27, 64, 125, 216, 343)
plot(x, y, pch=23, col = "black", bg = "yellow", lwd=1, cex=1.5)
Output
In this plot, we have passed the lwd = 1 value, and you can see that the diamond point’s border has a width of 1. If we change the lwd = 2, the width will increase.
Use the pch option to define the symbols for your plotting points. For example, from symbols 21 through 25, you can define the border color (col=) and fill color (bg=).
Various options can help you specify the color for various plot properties.
Krunal Lathiya is a seasoned Computer Science expert with over eight years in the tech industry. He boasts deep knowledge in Data Science and Machine Learning. Versed in Python, JavaScript, PHP, R, and Golang. Skilled in frameworks like Angular and React and platforms such as Node.js. His expertise spans both front-end and back-end development. His proficiency in the Python language stands as a testament to his versatility and commitment to the craft.
The summary() is a generic function that produces the summary statistics for various R objects,…
The paste() function in R concatenates vectors after converting them to character. paste("Hello", 19, 21,…
R paste0() function concatenates strings without any separator between them. It is a shorthand version…
Standard Error (SE) measures the variability or dispersion of the sample mean estimate of a…
max() The max() function in R finds the maximum value of a vector or data…
The as.Date() function in R converts various types of date and time objects or character…