【发布时间】:2023-03-10 09:39:01
【问题描述】:
我想在 R 中复制这个数字,而不是只是数据范围和函数信息的表。问题在于其中一些函数,它们都在 R 中完成。例如反双曲正弦,...?!谢谢
eq <- function(x) {arcsinh(x)}
tmp <- data.frame(x=1:50, y=eq(1:50))
p <- qplot(x, y, data=tmp, xlab="X-axis", ylab="Y-axis")
c <- stat_function(fun=eq)
print(p + c)
【问题讨论】:
-
curve(acosh,from=1.1,to=10, xlim=c(0,10))等?
标签: r function math graph figure