作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在同一个图上有三个不同参数 alpha 的曲线。
curve(sin(x), from = 1, to = 3, lty = 1, ylim = c(-1, 1))
curve(sin(2 * x), add = TRUE, lty = 2)
curve(sin(3 * x), add = TRUE, lty = 3)
legend("topright", legend = expression(paste(alpha, " = ", c(1, 2, 3))), lty = 1:3)
最佳答案
更好的循环答案来自 here和用户 20650。
用 sapply 解决方案 expression
功能相当棘手,但与 substitute
一起使用您可以使用 sapply
循环:
curve(sin(x), from = 1, to = 3, lty = 1, ylim = c(-1, 1))
curve(sin(2 * x), add = TRUE, lty = 2)
curve(sin(3 * x), add = TRUE, lty = 3)
legend("topright",
legend = sapply(1:3, function(x) as.expression(substitute(alpha == B,
list(B = as.name(x))))),
lty = 1:3)
curve(sin(x), from = 1, to = 3, lty = 1, ylim = c(-1, 1))
curve(sin(2 * x), add = TRUE, lty = 2)
curve(sin(3 * x), add = TRUE, lty = 3)
legend("topright", legend = c(expression(paste(alpha, " = ", 1)),
expression(paste(alpha, " = ", 2)),
expression(paste(alpha, " = ", 3))), lty = 1:3)
关于r - R中传说中的希腊字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30540028/
我有一个绘图脚本,我从 JSON 文件加载字幕(变量 subplot_titles): JSON 文件示例: "subplot_titles" : { "0" : "Model: $~w_{0
在 MATLAB 中,如果您在轴标签中键入“\alpha”,它将呈现“纯文本”希腊字符 alpha,而不需要 Latex。我希望对 Matplotlib 的 Pyplot 做同样的事情。 正在关注 H
我是一名优秀的程序员,十分优秀!