如何将数学函数的xy坐标返回为任意长度的数据框?

huangapple go评论95阅读模式
英文:

How to return xy-coordinates of a mathematical function into a dataframe of arbitrary length?

问题

我想获得一个包含描述两点P1(x1, y1)和P2(x2, y2)之间线性函数的n个xy坐标的数据框。

我的方法是找到两点的xy坐标,然后计算这个线性方程的斜率和截距 y = slope * x + intercept

为了简化,让:

  1. x1 = 0.1
  2. y1 = 0.2
  3. x2 = 1.1
  4. y2 = 0.6
  5. n = c(1:200) # 例子中我的数据的长度
  6. slope = (y2 - y1) / (x2 - x1)
  7. intercept = y1 - slope * x1

到目前为止都好,但现在我想将线性方程的各个xy坐标计算到一个名为baseline的数据框中,该数据框有length(n)行,包含x_baseliney_baseline 两列。

如何解决这个问题?到目前为止,我在网上找不到令人满意的答案,非常感谢任何帮助!

为了澄清,这是我期望的输出的示意图在这里

英文:

I want to get a dataframe containing n numbers of xy-coordinates that describe a linear function between two points P1(x1, y1) and P2(x2, y2) .

My approach would be to find the xy-coordinates of two points and calculate the slope and intercept of this linear equation y = slope * x + intercept.

For simplicity let: P

  1. x1 = 0.1
  2. y1 = 0.2
  3. x2 = 1.1
  4. y2 = 0.6
  5. n = c(1:200) #example length of my data
  6. slope = (y2 - y1) / (x2 - x1)
  7. intercept = y1 - slope * x1

So far so good, but now i would like to compute the individual xy-coordinates of my linear equation into a dataframe baseline with length(n) rows with the columns x_baseline and y_baseline.

How would one go about solving this problem? So far, I could not find an satisfactory answer online, any help is highly appreciated!

For clarification a drawing of my desired output here

答案1

得分: 1

如果你有x1y1x2y2,你可以使用一些代数运算来计算点之间的插值。

  1. steps <- (n-1)/(max(n)-1)
  2. dd <- data.frame(
  3. x = x1 + (x2-x1) * steps,
  4. y = y1 + (y2-y1) * steps
  5. )

然后,你可以使用以下代码来绘制它们:

  1. plot(y~x, dd)
  2. points(c(x1,x2), c(y1, y2), col="green", pch=16)

你也可以使用approx进行插值:

  1. dd <- data.frame(
  2. x = approx(c(0,1), c(x1, x2), seq(0, 1, length.out = length(n)))$y,
  3. y = approx(c(0,1), c(y1, y2), seq(0, 1, length.out = length(n)))$y
  4. )

或者,如果你真的想要使用斜率(slope)和截距(intercept):

  1. dd <- data.frame(
  2. x = seq(x1, x2, length.out = length(n))
  3. ) %>%
  4. transform(y = intercept + x * slope)
英文:

If you have x1, y1, x2, y2 you can just use some some algebra to calculate the interpolation between the points

  1. steps &lt;- (n-1)/(max(n)-1)
  2. dd &lt;- data.frame(
  3. x = x1 + (x2-x1) * steps,
  4. y = y1 + (y2-y1) * steps
  5. )

And we can plot them with

  1. plot(y~x, dd)
  2. points(c(x1,x2), c(y1, y2), col=&quot;green&quot;, pch=16)

You could also do interpolation with approx

  1. dd &lt;- data.frame(
  2. x = approx(c(0,1), c(x1, x2), seq(0, 1, length.out = length(n)))$y,
  3. y = approx(c(0,1), c(y1, y2), seq(0, 1, length.out = length(n)))$y
  4. )

or if you really wanted to use the slope and intercept you could do

  1. dd &lt;- data.frame(
  2. x = seq(x1, x2, length.out = length(n))
  3. ) |&gt;
  4. transform(y = intercept + x * slope)

答案2

得分: 1

以下是翻译好的代码部分:

  1. library(tidyverse)
  2. library(modelr)
  3. baseline <- tibble(
  4. x = c(0.1, 1.1),
  5. y = c(0.2, 0.6)
  6. )
  7. mod <- lm(y ~ x, baseline)
  8. baseline |>
  9. data_grid(x = seq_range(x, 200)) |>
  10. add_predictions(mod, var = "y_baseline") |>
  11. rename(x_baseline = x)

创建于2023年3月12日,使用reprex v2.0.2

英文:

If you don't want to do the math yourself, fit a linear model and predict from it:

  1. library(tidyverse)
  2. library(modelr)
  3. baseline &lt;- tibble(
  4. x = c(0.1, 1.1),
  5. y = c(0.2, 0.6)
  6. )
  7. mod &lt;- lm(y ~ x, baseline)
  8. baseline |&gt;
  9. data_grid(x = seq_range(x, 200)) |&gt;
  10. add_predictions(mod, var = &quot;y_baseline&quot;) |&gt;
  11. rename(x_baseline = x)
  12. #&gt; # A tibble: 200 &#215; 2
  13. #&gt; x_baseline y_baseline
  14. #&gt; &lt;dbl&gt; &lt;dbl&gt;
  15. #&gt; 1 0.1 0.200
  16. #&gt; 2 0.105 0.202
  17. #&gt; 3 0.110 0.204
  18. #&gt; 4 0.115 0.206
  19. #&gt; 5 0.120 0.208
  20. #&gt; 6 0.125 0.210
  21. #&gt; 7 0.130 0.212
  22. #&gt; 8 0.135 0.214
  23. #&gt; 9 0.140 0.216
  24. #&gt; 10 0.145 0.218
  25. #&gt; # … with 190 more rows

<sup>Created on 2023-03-12 with reprex v2.0.2</sup>

答案3

得分: 0

您的x值将由seq(x1, x2, length = 100)给出,新的y值将由这个向量乘以slope再加上intercept

  1. df <- data.frame(x_baseline = seq(x1, x2, length = 100),
  2. y_baseline = slope * seq(x1, x2, length = 100) + intercept)

让我们用红色绘制您的原始点,用黑色绘制数据框的点:

  1. plot(c(x1, x2), c(y1, y2), col = "red", cex = 2)
  2. points(df$x_baseline, df$y_baseline)

如何将数学函数的xy坐标返回为任意长度的数据框?

2023-03-11创建,使用reprex v2.0.2

英文:

Your x values would be given by seq(x1, x2, length = 100), and your new y values given by this vector multiplied by slope plus the intercept:

  1. df &lt;- data.frame(x_baseline = seq(x1, x2, length = 100),
  2. y_baseline = slope * seq(x1, x2, length = 100) + intercept)

Let's plot your original points in red, and the dataframe's points in black:

  1. plot(c(x1, x2), c(y1, y2), col = &quot;red&quot;, cex = 2)
  2. points(df$x_baseline, df$y_baseline)

如何将数学函数的xy坐标返回为任意长度的数据框?

<sup>Created on 2023-03-11 with reprex v2.0.2</sup>

huangapple
  • 本文由 发表于 2023年3月12日 06:48:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/75710060.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定