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;
$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:
- any number of auxiliary data streams rather than just one
- a primary data stream that doesn't have consistent time increments?
javascript algorithm datetime ecmascript-6
$endgroup$
add a comment |
$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:
- any number of auxiliary data streams rather than just one
- a primary data stream that doesn't have consistent time increments?
javascript algorithm datetime ecmascript-6
$endgroup$
add a comment |
$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:
- any number of auxiliary data streams rather than just one
- a primary data stream that doesn't have consistent time increments?
javascript algorithm datetime ecmascript-6
$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:
- any number of auxiliary data streams rather than just one
- a primary data stream that doesn't have consistent time increments?
javascript algorithm datetime ecmascript-6
javascript algorithm datetime ecmascript-6
edited 14 mins ago
Jamal♦
30.6k11121227
30.6k11121227
asked Oct 18 '18 at 13:32
BattersBatters
386
386
add a comment |
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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