作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我使用 segments()
要使用 R 绘制线段,末端总是呈圆形。如何将末端改平?
最佳答案
来自 ?par
:
‘lend’ The line end style. This can be specified as an integer or
string:
‘0’ and ‘"round"’ mean rounded line caps [_default_];
‘1’ and ‘"butt"’ mean butt line caps;
‘2’ and ‘"square"’ mean square line caps.
plot(0:1,0:1,type="n")
par(lend=0); segments(0,0.2,1,0.2,lwd=8)
par(lend=1); segments(0,0.4,1,0.4,lwd=8)
par(lend=2); segments(0,0.6,1,0.6,lwd=8)
segments(0,0.2,1,0.2,lwd=8, lend=1)
等。
关于r - 将绘制的线段末端从圆形更改为扁平,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10941650/
我正在尝试将 View 的背景设置为具有从 Palette api 生成颜色的渐变 渐变将从纯色逐渐淡出,但我希望纯色部分占据大部分背景。现在它开始稳定,然后在 View 宽度上逐渐淡出,我希望它从
我是一名优秀的程序员,十分优秀!