在 `geom_smooth` 中使用 `nlsfit` 以向图表添加指数线

如果可能的话,我想将 easynls 中的 nlsfit 与 ggplot2 一起使用。

到目前为止,我已经做了以下工作:

  1. 设置子集数据:

    library('ggplot2')library('easynls')x <- seq(25,97)y <- c(0.014, 0.016, 0.015, 0.016, 0.018, 0.019, 0.023, 0.019, 0.021, 0.017, 0.018, 0.016, 0.016, 0.020, 0.018, 0.019, 0.022, 0.023, 0.027, 0.027, 0.028, 0.031, 0.029, 0.032, 0.030, 0.030, 0.030, 0.033, 0.039, 0.038, 0.039, 0.046, 0.042, 0.043, 0.050, 0.054, 0.059, 0.064, 0.062, 0.058, 0.063, 0.069, 0.071, 0.069, 0.073, 0.071, 0.070, 0.077, 0.086, 0.077, 0.090, 0.086, 0.098, 0.108, 0.112, 0.116, 0.129, 0.120, 0.128, 0.141, 0.150, 0.143, 0.148, 0.150, 0.162, 0.162, 0.168, 0.152, 0.151, 0.161, 0.169, 0.189, 0.184)data <- data.frame(x,y)
  2. 在样本数据上运行 NLSfit

    nlsfit = nlsfit(data.frame(x,y), model=6, start=c(250,0.05))nlsfit# $Model# [1] "y~a*exp(b*x)"# $Parameters#                              y# coefficient a           0.0061# coefficient b           0.0358# p-value t.test for a    0.0000# p-value t.test for b    0.0000# r-squared               0.9793# adjusted r-squared      0.9790# AIC                  -500.0812# BIC                  -493.2098
  3. 使用带线的 plot() 绘图

    plot(x, y)a <- nlsfit$Parameters[1,]b <- nlsfit$Parameters[2,]lines(x, a*exp(x*b), col="steelblue")
  4. 尝试在 ggplot2 中使用 nls(这有效 – 但在完整数据集上的拟合效果不佳)…

    ggplot(data, aes(x=x, y=y)) + geom_point(       ) + geom_smooth(method="nls", formula=y~a*exp(x*b),       method.args=list(start=c(a=250,b=0.05)), se=FALSE)
  5. 尝试在 ggplot2 中使用 nlsfit — 无效

    # 下面的代码无效ggplot(data, aes(x=x, y=y)) + geom_point(       ) + geom_smooth(method="nlsfit", formula=y~a*exp(x*b),       method.args=list(data.frame(x, y),                        model=6, start=c(250,0.05)), se=FALSE)# 警告信息:# 在 `stat_smooth()` 中计算失败:# 未使用的参数 (formula, weights = weight, list(x = 25:97, y = c(0.014, 0.016, 0.015, 0.016, 0.018, 0.019, 0.023, 0.019, 0.021, 0.017, 0.018, 0.016, 0.016, 0.02, 0.018, 0.019, 0.022, 0.023, 0.027, 0.027, 0.028, 0.031, 0.029, 0.032, 0.03, 0.03, 0.03, 0.033, 0.039, 0.038, 0.039, 0.046, 0.042, 0.043, 0.05, 0.054, 0.059, 0.064, 0.062, 0.058, 0.063, 0.069, 0.071, 0.069, 0.073, 0.071, 0.07, 0.077, 0.086, 0.077, 0.09, 0.086, 0.098, 0.108, 0.112, 0.116, 0.129, 0.12, 0.128, 0.141, 0.15, 0.143, 0.148, 0.15, 0.162,# 0.162, 0.168, 0.152, 0.151, 0.161, 0.169, 0.189, 0.184)))

这是可能的吗 – 任何帮助都会受到欢迎。谢谢。


回答:

你可以尝试使用 stat_function 来使最后一部分生效:

a <- nlsfit$Parameters[row.names(nlsfit$Parameters) == 'coefficient a',]b <- nlsfit$Parameters[row.names(nlsfit$Parameters) == 'coefficient b',]ggplot(data, aes(x=x, y=y)) + geom_point() +   stat_function(fun=function(x) a*exp(b*x), colour = "blue")

enter image description here

Related Posts

L1-L2正则化的不同系数

我想对网络的权重同时应用L1和L2正则化。然而,我找不…

使用scikit-learn的无监督方法将列表分类成不同组别,有没有办法?

我有一系列实例,每个实例都有一份列表,代表它所遵循的不…

f1_score metric in lightgbm

我想使用自定义指标f1_score来训练一个lgb模型…

通过相关系数矩阵进行特征选择

我在测试不同的算法时,如逻辑回归、高斯朴素贝叶斯、随机…

可以将机器学习库用于流式输入和输出吗?

已关闭。此问题需要更加聚焦。目前不接受回答。 想要改进…

在TensorFlow中,queue.dequeue_up_to()方法的用途是什么?

我对这个方法感到非常困惑,特别是当我发现这个令人费解的…

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注