npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

angular2-medium-reduce

v1.0.0

Published

We have data which represents a movement of currency pair EUR/USD in the last year 2016. Our data includes three parameters for each day and looks like this { forex: 'EUR/USD', date: '2016-01-01', value: 1.021304401 }. From that data we would like an answ

Downloads

5

Readme

#Medium reduce

We have data which represents a movement of currency pair EUR/USD in the last year 2016. Our data includes three parameters for each day and looks like this { forex: 'EUR/USD', date: '2016-01-01', value: 1.021304401 }. From that data we would like an answer to a question, was average of pair USD/EUR higher in the first half of 2016 or in second?

To find out we use two different solutions.

We implemented four functions.

  • customMap in map.ts
  • customReduce in reduce.ts
  • customFilter in filter.ts
  • asynchronousAverage in asynchronous.ts

To find out the average of pair USD/EUR in the first half of 2016 we use first three functions (filter, map and reduce). First, we filter the whole data, using only pairs from the first half of 2016 (date < '2016-07-01'). Then we map our data because we have values for pair EUR/USD, but we were interested in pair USD/EUR, we have to inverse our values (value = 1 / value). Now when we have an array with values we are looking, we calculate a sum of these elements with reduce function and then divide this value by a number of elements in a current array. The result is an average value of pair USD/EUR in the first half of 2016.

To find out the average of pair USD/EUR in the second half of 2016 we use the fourth function (asynchronousAverage). If we look what we've done in the first step we can quickly see, that we've called method array.forEach() for three times (for each function). In case we already know, that we'll need all three functions (map, reduce and filter) we can optimize execution and done everything in one loop. In function asynchronousAverage, we use only one loop and check for each element if it belongs in the second half of 2016 (date > '2016-06-30'), reverse its value (value = 1 / value) and add to our average.

#Usage

$ git clone -b izak https://github.com/irmana/catenate-starter-tasks-Izak88.git
$ cd .\catenate-starter-tasks-Izak88\medium-reduce\
$ npm install
$ npm start

Now open your browser at http://localhost:3000

#Time spent 3h

#Licence MIT