用R中的图计算lim函数

时间:2018-10-27 13:39:08

标签: r ggplot2

说有林thisenter image description here

=-1。 如何获得带有该值的图? 更清楚地说,我想要这样的情节

如何获取? enter image description here

1 个答案:

答案 0 :(得分:1)

您可以执行以下操作:

my_func <- function(x) x / (x - 1) - 2

library(ggplot2)
ggplot(data.frame(x = 0), aes(x)) +
    stat_function(fun = my_func, aes(colour = "Function")) +
    geom_hline(aes(yintercept = -1, colour = "Asymptote")) +
    scale_colour_manual(values = c("Asymptote" = "blue", "Function" = "orange")) + 
    xlim(-10, 10) +
    theme_minimal()

enter image description here