Note that there are some explanatory texts on larger screens.

plurals
  1. POInterpolating data points in Excel
    primarykey
    data
    text
    <p>I'm sure this is the kind of problem other have solved many times before.</p> <p>A group of people are going to do measurements (Home energy usage to be exact). All of them will do that at different times and in different intervals.</p> <p>So what I'll get from each person is a set of {date, value} pairs where there are dates missing in the set.</p> <p>What I need is a complete set of {date, value} pairs where for each date withing the range a value is known (either measured or calculated). I expect that a simple linear interpolation would suffice for this project.</p> <p>If I assume that it must be done in Excel. What is the best way to interpolate in such a dataset (so I have a value for every day) ?</p> <p>Thanks.</p> <p>NOTE: When these datasets are complete I'll determine the slope (i.e. usage per day) and from that we can start doing home-to-home comparisons.</p> <p>ADDITIONAL INFO After first few suggestions: I do not want to manually figure out where the holes are in my measurement set (too many incomplete measurement sets!!). I'm looking for something (existing) automatic to do that for me. So if my input is </p> <pre><code>{2009-06-01, 10} {2009-06-03, 20} {2009-06-06, 110} </code></pre> <p>Then I expect to automatically get</p> <pre><code>{2009-06-01, 10} {2009-06-02, 15} {2009-06-03, 20} {2009-06-04, 50} {2009-06-05, 80} {2009-06-06, 110} </code></pre> <p>Yes, I can write software that does this. I am just hoping that someone already has a "ready to run" software (Excel) feature for this (rather generic) problem.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload