Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个功能
1.0 * (375 - 515) * exp(-0.01 * x) + 515
其中x= 以毫秒为单位的时间。我想在给定范围内x(在我的情况下为 80 到 250 之间)的 R 图中绘制这条线,x在 x 轴上和在 y 轴上的给定范围 800-300 上(轴之间的交点其中 x = 80 和 y = 800)。
x
我怎样才能做到这一点?
你可以看看 R 中的曲线函数:
?curve
这样的事情会让你开始:
curve(1.0 * (375 - 515) * exp(-0.01 * x) + 515, from=80, to=250,ylim=c(300,800))
为什么您希望轴在 (80,800) 处相交?