- #1
Brian82784
- 19
- 0
- TL;DR Summary
- Finding a missing value for trending and analysis
hello,
I’m trying to figure out if I’m doing this correctly or if there’s a different way that I should be finding a missing value. I’m trending data for an automatic transformer. Every month I collect the operations counter value and at the end of the year sum the number of tap changes. Sometimes I can’t get to the transformer so there are months where I don’t Collect the count.
For example:
Operations count
Jan = 654104
Feb = Missing
Mar = 659176
To find approximate missing value take 654104 + 659176 = 1313280 and dividing 1313280/2 = 656640
Now it would look like
Jan = 654104
Feb = 656640
Mar = 659176
I will get into a bit more down below.
Operations Counter
Jan = 654104
Feb = missing (populate with calculated 656640)
Mar = 659176
April= 661476
May= 664376
June= missing
July = missing
August = 671976
September= 675076
I then find the total changes month to month
Total tap Changes
Jan - Feb = 2536
Feb- March = 2536
March-April= 2300
April-May= 2900
After I have a years worth of data I sum the total changes. To see how much it operated in a year. So above from Jan - May would be a total of 10,272 operations (I know it’s not. Full year just showing an example).
I’m trying to figure out if I’m doing this correctly or if there’s a different way that I should be finding a missing value. I’m trending data for an automatic transformer. Every month I collect the operations counter value and at the end of the year sum the number of tap changes. Sometimes I can’t get to the transformer so there are months where I don’t Collect the count.
For example:
Operations count
Jan = 654104
Feb = Missing
Mar = 659176
To find approximate missing value take 654104 + 659176 = 1313280 and dividing 1313280/2 = 656640
Now it would look like
Jan = 654104
Feb = 656640
Mar = 659176
I will get into a bit more down below.
Operations Counter
Jan = 654104
Feb = missing (populate with calculated 656640)
Mar = 659176
April= 661476
May= 664376
June= missing
July = missing
August = 671976
September= 675076
I then find the total changes month to month
Total tap Changes
Jan - Feb = 2536
Feb- March = 2536
March-April= 2300
April-May= 2900
After I have a years worth of data I sum the total changes. To see how much it operated in a year. So above from Jan - May would be a total of 10,272 operations (I know it’s not. Full year just showing an example).