0

Here I have datetime and the set of values. I am trying to find no.of. cycles in the line graph.

I would like to find the mid values from the line graph as i already found min, max values using lookup function. I need some assistance in getting mid values.

enter image description here

4
  • How do you define the mid values? Commented Mar 21, 2023 at 13:53
  • I need to capture the value before it rise . I can share my work book here but dont have an option here Commented Mar 21, 2023 at 14:15
  • I see that the points are located at an inflection. Is that what you mean by mid point. Commented Mar 21, 2023 at 14:58
  • Yes can you help me with sample dataset Commented Mar 21, 2023 at 16:45

1 Answer 1

0

You can notice that all the points you are looking for are located between 12 and 16. Accordingly, filter your data with y between 12 and 16.

What you are looking for is the second derivative of the function that is above a threshold. To do that, shift your data and subtract one array from the other. That's the first derivative. Repeat the same process with the new array and get the second derivative. You can then use a threshold to pick up the points.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.