作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道我可以在绘图时指定纵横比,例如plot(x,y,asp=5)
.允许自动缩放(如 plot(x,y)
)后,有没有办法检索纵横比?我问的原因是我在玩text(x,y,'mystring',srt=local_slope)
,我在这里计算 local_slope
基于基础曲线和x
兴趣的值(value)。麻烦的是,对于 asp!=1
这会以与我绘制的数据集的显示斜率不同的角度旋转文本。样本:
x<- -10:10
y<- x^2
plot(x,y,t='l',asp=0.1)
# the slope at x=1 is 2 but the default plot aspect ratio is far from 1:1
text(1,1,'foo',srt= 180/pi*atan(2) ) #ugly-looking
text(-1,1,'bar',srt= (180/pi*atan(2/10))) #better
最佳答案
x<- -10:10
y<- x^2
plot(x,y,t='l',asp=0.1)
### the slope at x=1 is 2 but the default plot aspect ratio is far from 1:1
text(1,1,'foo',srt= 180/pi*atan(2) ) #ugly-looking
text(-1,1,'bar',srt= (180/pi*atan(2/10))) #better
ff <- par("pin")
ff[2]/ff[1] ## 1.00299
ff <- par("pin")
ff[2]/ff[1] ## 0.38
par("usr")
整理纵横比
MASS::eqscplot
的胆量可能也很有启发性。
关于r - base::plot -- 我可以检索绘制的纵横比吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21263748/
我有一张 table 。我希望它的数据垂直和水平居中。 我使用了 align="center"valign="middle" ,但它没有用。
我是一名优秀的程序员,十分优秀!