Jump to content

Kelly Kolotka

Seeq Team
  • Posts

    4
  • Joined

  • Last visited

Personal Information

  • Company
    Seeq
  • Title
    Analytics Engineer

Kelly Kolotka's Achievements

Rookie

Rookie (2/14)

  • First Post
  • One Month Later
  • Week One Done

Recent Badges

0

Reputation

3

Community Answers

  1. Hi Trevor, There are multiple formulas you can write to accomplish this, but it will depend on the time duration you would like to find the maximum for. In the photo, I have found the maximum of my signal Temperature over 2 different time ranges. In this case, the dashed line is due to uncertainty in the calculation, but both formulas result in Signals. 1. max of 6 hour periods: This formula will find the maximum point in every 6 hour window: $t.aggregate(maxValue(), periods(6hours), durationkey()) 2. max of the last 6 hours: This will use now() so that the maximum is calculated for the past 6 hours relative to current time: $t.aggregate(maxValue(), condition(6h, capsule(now()-6h, now())), durationkey())
  2. Hi Claire, You can use the function .isNotValid() to create a condition to detect when data in a signal is missing. In this case, you could just do the formula of $signal.isNotValid() as shown in the screenshots below. This creates the green capsules that identify when there are gaps in my orange signal.
  3. Solution: This example shows how to use the derivative formula and then the Value Search Tool to create a condition when your derivative is above or below a particular value or in a specified range. Content Verified DEC2023
×
×
  • Create New...