I'm looking to replicate this greenhouse gases counter in my website. Poking around i found the initial data for the formula.
The counter use the following information:
- Beginnig date: 2012/03/01
- End date: 2012/04/01
- Begin count: 3698043054083
- End Count: 3699966291242
I tried to do a linear regression like this:
m = (xf - xi) / (tf - ti) conter = m*(t-ti)+xi
here's the result, but my counter keeps falling behind (probably the original isn't a linear formula).
Is there a better way to replicate this counter?
Thanks