Find equation to fit data with plateau
up vote
0
down vote
favorite
I have a dataset with X and Y values. I would like to fit the data which plateaus at a certain value Y (want to extract the Y where it plateaus).
The data includes (0 0) and for increasing x (no limit) the Y values do not increase beyond a certain Y value.
Plateau for distance vs square root of time
Plateau for distance vs time
What would be the (most suitable) fitting function?
exponential-function data-analysis
add a comment |
up vote
0
down vote
favorite
I have a dataset with X and Y values. I would like to fit the data which plateaus at a certain value Y (want to extract the Y where it plateaus).
The data includes (0 0) and for increasing x (no limit) the Y values do not increase beyond a certain Y value.
Plateau for distance vs square root of time
Plateau for distance vs time
What would be the (most suitable) fitting function?
exponential-function data-analysis
sigmoid
– Wouter
Oct 30 '17 at 12:37
Welcome to stackexchange. If you provide more detail - perhaps a graph of your data - you are more likely to get an answer. In the meanwhile look into logistic curves: en.wikipedia.org/wiki/Logistic_function
– Ethan Bolker
Oct 30 '17 at 12:37
Thank you @EthanBolker, I just added some graphs.
– user3550552
Oct 31 '17 at 23:29
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a dataset with X and Y values. I would like to fit the data which plateaus at a certain value Y (want to extract the Y where it plateaus).
The data includes (0 0) and for increasing x (no limit) the Y values do not increase beyond a certain Y value.
Plateau for distance vs square root of time
Plateau for distance vs time
What would be the (most suitable) fitting function?
exponential-function data-analysis
I have a dataset with X and Y values. I would like to fit the data which plateaus at a certain value Y (want to extract the Y where it plateaus).
The data includes (0 0) and for increasing x (no limit) the Y values do not increase beyond a certain Y value.
Plateau for distance vs square root of time
Plateau for distance vs time
What would be the (most suitable) fitting function?
exponential-function data-analysis
exponential-function data-analysis
edited Oct 31 '17 at 23:29
asked Oct 30 '17 at 12:33
user3550552
12
12
sigmoid
– Wouter
Oct 30 '17 at 12:37
Welcome to stackexchange. If you provide more detail - perhaps a graph of your data - you are more likely to get an answer. In the meanwhile look into logistic curves: en.wikipedia.org/wiki/Logistic_function
– Ethan Bolker
Oct 30 '17 at 12:37
Thank you @EthanBolker, I just added some graphs.
– user3550552
Oct 31 '17 at 23:29
add a comment |
sigmoid
– Wouter
Oct 30 '17 at 12:37
Welcome to stackexchange. If you provide more detail - perhaps a graph of your data - you are more likely to get an answer. In the meanwhile look into logistic curves: en.wikipedia.org/wiki/Logistic_function
– Ethan Bolker
Oct 30 '17 at 12:37
Thank you @EthanBolker, I just added some graphs.
– user3550552
Oct 31 '17 at 23:29
sigmoid
– Wouter
Oct 30 '17 at 12:37
sigmoid
– Wouter
Oct 30 '17 at 12:37
Welcome to stackexchange. If you provide more detail - perhaps a graph of your data - you are more likely to get an answer. In the meanwhile look into logistic curves: en.wikipedia.org/wiki/Logistic_function
– Ethan Bolker
Oct 30 '17 at 12:37
Welcome to stackexchange. If you provide more detail - perhaps a graph of your data - you are more likely to get an answer. In the meanwhile look into logistic curves: en.wikipedia.org/wiki/Logistic_function
– Ethan Bolker
Oct 30 '17 at 12:37
Thank you @EthanBolker, I just added some graphs.
– user3550552
Oct 31 '17 at 23:29
Thank you @EthanBolker, I just added some graphs.
– user3550552
Oct 31 '17 at 23:29
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You can fit
$$
y = M(1- e^{-ax})
$$
where $M$ is the maximum at which the plateau ends up and $a$ governs how fast it gets there.
You can probably get Excel to find the best values of $M$ and $a$, or just play until the graph looks right.
Is that the most appropriate equation for such? It seems there are a variety of fitting functions out there and I am wondering how to choose the most suitable for such a plateau?
– user3550552
Nov 5 '17 at 20:11
eg. rcompanion.org/handbook/I_11.html
– user3550552
Nov 5 '17 at 20:14
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You can fit
$$
y = M(1- e^{-ax})
$$
where $M$ is the maximum at which the plateau ends up and $a$ governs how fast it gets there.
You can probably get Excel to find the best values of $M$ and $a$, or just play until the graph looks right.
Is that the most appropriate equation for such? It seems there are a variety of fitting functions out there and I am wondering how to choose the most suitable for such a plateau?
– user3550552
Nov 5 '17 at 20:11
eg. rcompanion.org/handbook/I_11.html
– user3550552
Nov 5 '17 at 20:14
add a comment |
up vote
0
down vote
You can fit
$$
y = M(1- e^{-ax})
$$
where $M$ is the maximum at which the plateau ends up and $a$ governs how fast it gets there.
You can probably get Excel to find the best values of $M$ and $a$, or just play until the graph looks right.
Is that the most appropriate equation for such? It seems there are a variety of fitting functions out there and I am wondering how to choose the most suitable for such a plateau?
– user3550552
Nov 5 '17 at 20:11
eg. rcompanion.org/handbook/I_11.html
– user3550552
Nov 5 '17 at 20:14
add a comment |
up vote
0
down vote
up vote
0
down vote
You can fit
$$
y = M(1- e^{-ax})
$$
where $M$ is the maximum at which the plateau ends up and $a$ governs how fast it gets there.
You can probably get Excel to find the best values of $M$ and $a$, or just play until the graph looks right.
You can fit
$$
y = M(1- e^{-ax})
$$
where $M$ is the maximum at which the plateau ends up and $a$ governs how fast it gets there.
You can probably get Excel to find the best values of $M$ and $a$, or just play until the graph looks right.
answered Nov 1 '17 at 0:09
Ethan Bolker
39.7k543103
39.7k543103
Is that the most appropriate equation for such? It seems there are a variety of fitting functions out there and I am wondering how to choose the most suitable for such a plateau?
– user3550552
Nov 5 '17 at 20:11
eg. rcompanion.org/handbook/I_11.html
– user3550552
Nov 5 '17 at 20:14
add a comment |
Is that the most appropriate equation for such? It seems there are a variety of fitting functions out there and I am wondering how to choose the most suitable for such a plateau?
– user3550552
Nov 5 '17 at 20:11
eg. rcompanion.org/handbook/I_11.html
– user3550552
Nov 5 '17 at 20:14
Is that the most appropriate equation for such? It seems there are a variety of fitting functions out there and I am wondering how to choose the most suitable for such a plateau?
– user3550552
Nov 5 '17 at 20:11
Is that the most appropriate equation for such? It seems there are a variety of fitting functions out there and I am wondering how to choose the most suitable for such a plateau?
– user3550552
Nov 5 '17 at 20:11
eg. rcompanion.org/handbook/I_11.html
– user3550552
Nov 5 '17 at 20:14
eg. rcompanion.org/handbook/I_11.html
– user3550552
Nov 5 '17 at 20:14
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2496502%2ffind-equation-to-fit-data-with-plateau%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
sigmoid
– Wouter
Oct 30 '17 at 12:37
Welcome to stackexchange. If you provide more detail - perhaps a graph of your data - you are more likely to get an answer. In the meanwhile look into logistic curves: en.wikipedia.org/wiki/Logistic_function
– Ethan Bolker
Oct 30 '17 at 12:37
Thank you @EthanBolker, I just added some graphs.
– user3550552
Oct 31 '17 at 23:29