JavaScript time series data combination Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Filling gaps in time series dataConditionals for time specific dataSum an array of video lengths in JavaScript into HH:MM:SSJavaScript breadth-first search algorithmGenerate a series of random integers between 1 and 10Show weekly and daily variations in time-series dataFormatting mm:ss to string with JavascriptBasic Javascript algorithm for time implementation (morning, afternoon, etc.)Javascript clock/time increment improvementProcessing large time-series data

Does the Black Tentacles spell do damage twice at the start of turn to an already restrained creature?

What is the "studentd" process?

Moving a wrapfig vertically to encroach partially on a subsection title

Did Mueller's report provide an evidentiary basis for the claim of Russian govt election interference via social media?

As a dual citizen, my US passport will expire one day after traveling to the US. Will this work?

Flight departed from the gate 5 min before scheduled departure time. Refund options

Is multiple magic items in one inherently imbalanced?

After Sam didn't return home in the end, were he and Al still friends?

How do living politicians protect their readily obtainable signatures from misuse?

Why complex landing gears are used instead of simple,reliability and light weight muscle wire or shape memory alloys?

White walkers, cemeteries and wights

I can't produce songs

Why is the change of basis formula counter-intuitive? [See details]

Found this skink in my tomato plant bucket. Is he trapped? Or could he leave if he wanted?

Is openssl rand command cryptographically secure?

Does silver oxide react with hydrogen sulfide?

In musical terms, what properties are varied by the human voice to produce different words / syllables?

Simple Line in LaTeX Help!

What does Turing mean by this statement?

How were pictures turned from film to a big picture in a picture frame before digital scanning?

How much damage would a cupful of neutron star matter do to the Earth?

How to align enumerate environment inside description environment

Project Euler #1 in C++

Why is a lens darker than other ones when applying the same settings?



JavaScript time series data combination



Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Filling gaps in time series dataConditionals for time specific dataSum an array of video lengths in JavaScript into HH:MM:SSJavaScript breadth-first search algorithmGenerate a series of random integers between 1 and 10Show weekly and daily variations in time-series dataFormatting mm:ss to string with JavascriptBasic Javascript algorithm for time implementation (morning, afternoon, etc.)Javascript clock/time increment improvementProcessing large time-series data



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1












$begingroup$


I've written code that performs a merge of two streams of sorted time series data. The first stream is taken to be the primary and any successive streams are merged into it, using the nearest timestamp match to align data. It can be assumed that there will only ever be one match per primary timestamp.



const primary = [[1,0], [2, 5], [3, 10], [4, 0]];
const aux = [[1.3, 10], [3.4, 20], [6.9, 30]];

let j = 0;
const halfPeriod = (primary[1][0] - primary[0][0]) / 2;

aux.map(val =>
tsAux = val[0];
while(j < primary.length)
if (tsAux < primary[j][0] + halfPeriod)
primary[j].push(val[1]);
return j++;
else
primary[j].push(null);
j++;


);
console.log(primary);


I can't quite put my finger on it but something about writing it felt sub-optimal (maybe just because I haven't used any ES6/2017/2018 syntax!), so my question is: is my gut feel correct and is there a neater and more robust way to do this? As a bonus, can it be neatly extended to accommodate:



  1. any number of auxiliary data streams rather than just one

  2. a primary data stream that doesn't have consistent time increments?









share|improve this question











$endgroup$


















    1












    $begingroup$


    I've written code that performs a merge of two streams of sorted time series data. The first stream is taken to be the primary and any successive streams are merged into it, using the nearest timestamp match to align data. It can be assumed that there will only ever be one match per primary timestamp.



    const primary = [[1,0], [2, 5], [3, 10], [4, 0]];
    const aux = [[1.3, 10], [3.4, 20], [6.9, 30]];

    let j = 0;
    const halfPeriod = (primary[1][0] - primary[0][0]) / 2;

    aux.map(val =>
    tsAux = val[0];
    while(j < primary.length)
    if (tsAux < primary[j][0] + halfPeriod)
    primary[j].push(val[1]);
    return j++;
    else
    primary[j].push(null);
    j++;


    );
    console.log(primary);


    I can't quite put my finger on it but something about writing it felt sub-optimal (maybe just because I haven't used any ES6/2017/2018 syntax!), so my question is: is my gut feel correct and is there a neater and more robust way to do this? As a bonus, can it be neatly extended to accommodate:



    1. any number of auxiliary data streams rather than just one

    2. a primary data stream that doesn't have consistent time increments?









    share|improve this question











    $endgroup$














      1












      1








      1





      $begingroup$


      I've written code that performs a merge of two streams of sorted time series data. The first stream is taken to be the primary and any successive streams are merged into it, using the nearest timestamp match to align data. It can be assumed that there will only ever be one match per primary timestamp.



      const primary = [[1,0], [2, 5], [3, 10], [4, 0]];
      const aux = [[1.3, 10], [3.4, 20], [6.9, 30]];

      let j = 0;
      const halfPeriod = (primary[1][0] - primary[0][0]) / 2;

      aux.map(val =>
      tsAux = val[0];
      while(j < primary.length)
      if (tsAux < primary[j][0] + halfPeriod)
      primary[j].push(val[1]);
      return j++;
      else
      primary[j].push(null);
      j++;


      );
      console.log(primary);


      I can't quite put my finger on it but something about writing it felt sub-optimal (maybe just because I haven't used any ES6/2017/2018 syntax!), so my question is: is my gut feel correct and is there a neater and more robust way to do this? As a bonus, can it be neatly extended to accommodate:



      1. any number of auxiliary data streams rather than just one

      2. a primary data stream that doesn't have consistent time increments?









      share|improve this question











      $endgroup$




      I've written code that performs a merge of two streams of sorted time series data. The first stream is taken to be the primary and any successive streams are merged into it, using the nearest timestamp match to align data. It can be assumed that there will only ever be one match per primary timestamp.



      const primary = [[1,0], [2, 5], [3, 10], [4, 0]];
      const aux = [[1.3, 10], [3.4, 20], [6.9, 30]];

      let j = 0;
      const halfPeriod = (primary[1][0] - primary[0][0]) / 2;

      aux.map(val =>
      tsAux = val[0];
      while(j < primary.length)
      if (tsAux < primary[j][0] + halfPeriod)
      primary[j].push(val[1]);
      return j++;
      else
      primary[j].push(null);
      j++;


      );
      console.log(primary);


      I can't quite put my finger on it but something about writing it felt sub-optimal (maybe just because I haven't used any ES6/2017/2018 syntax!), so my question is: is my gut feel correct and is there a neater and more robust way to do this? As a bonus, can it be neatly extended to accommodate:



      1. any number of auxiliary data streams rather than just one

      2. a primary data stream that doesn't have consistent time increments?






      javascript algorithm datetime ecmascript-6






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 14 mins ago









      Jamal

      30.6k11121227




      30.6k11121227










      asked Oct 18 '18 at 13:32









      BattersBatters

      386




      386




















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "196"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f205819%2fjavascript-time-series-data-combination%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Code Review Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f205819%2fjavascript-time-series-data-combination%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          名間水力發電廠 目录 沿革 設施 鄰近設施 註釋 外部連結 导航菜单23°50′10″N 120°42′41″E / 23.83611°N 120.71139°E / 23.83611; 120.7113923°50′10″N 120°42′41″E / 23.83611°N 120.71139°E / 23.83611; 120.71139計畫概要原始内容臺灣第一座BOT 模式開發的水力發電廠-名間水力電廠名間水力發電廠 水利署首件BOT案原始内容《小檔案》名間電廠 首座BOT水力發電廠原始内容名間電廠BOT - 經濟部水利署中區水資源局

          Prove that NP is closed under karp reduction?Space(n) not closed under Karp reductions - what about NTime(n)?Class P is closed under rotation?Prove or disprove that $NL$ is closed under polynomial many-one reductions$mathbfNC_2$ is closed under log-space reductionOn Karp reductionwhen can I know if a class (complexity) is closed under reduction (cook/karp)Check if class $PSPACE$ is closed under polyonomially space reductionIs NPSPACE also closed under polynomial-time reduction and under log-space reduction?Prove PSPACE is closed under complement?Prove PSPACE is closed under union?

          Is my guitar’s action too high? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Strings too stiff on a recently purchased acoustic guitar | Cort AD880CEIs the action of my guitar really high?Μy little finger is too weak to play guitarWith guitar, how long should I give my fingers to strengthen / callous?When playing a fret the guitar sounds mutedPlaying (Barre) chords up the guitar neckI think my guitar strings are wound too tight and I can't play barre chordsF barre chord on an SG guitarHow to find to the right strings of a barre chord by feel?High action on higher fret on my steel acoustic guitar