Compare commits
8 Commits
@forecasti
...
master
Author | SHA1 | Date | |
---|---|---|---|
c9b1644f91 | |||
c3edc13bef | |||
51dab26eb4 | |||
dc00dbdd6a | |||
82c313d9da | |||
0877fb056e | |||
1c87f1e18c | |||
0559c4ef90 |
|
@ -8,6 +8,7 @@ This package contains a series of utilities related to forecasting. It is curren
|
||||||
|
|
||||||
- vanilla javascript
|
- vanilla javascript
|
||||||
- [Best readme template](https://github.com/othneildrew/Best-README-Template)
|
- [Best readme template](https://github.com/othneildrew/Best-README-Template)
|
||||||
|
- [lerna](https://github.com/lerna/lerna)
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
|
@ -21,7 +22,7 @@ npm install forecasting
|
||||||
|
|
||||||
#### Aggregation
|
#### Aggregation
|
||||||
|
|
||||||
````js
|
Aggregation functionality is taken from [@forecasting/aggregation](https://www.npmjs.com/package/@forecasting/aggregation). You may want to install that package directly.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import {
|
import {
|
||||||
|
@ -66,12 +67,8 @@ const getAggregatedProbabilities = (array) => {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
````
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
You may also install [@forecasting/aggregation](https://www.npmjs.com/package/@forecasting/aggregation) directly
|
|
||||||
|
|
||||||
#### Scoring
|
#### Scoring
|
||||||
|
|
||||||
To be done
|
To be done
|
||||||
|
@ -84,4 +81,3 @@ To be done
|
||||||
|
|
||||||
- [ ] Do another repository for scoring methods
|
- [ ] Do another repository for scoring methods
|
||||||
- [ ] Do another repository for charts
|
- [ ] Do another repository for charts
|
||||||
```
|
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "forecasting",
|
"name": "forecasting",
|
||||||
"version": "0.1.0",
|
"version": "0.1.3",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "forecasting",
|
"name": "forecasting",
|
||||||
"version": "0.1.0",
|
"version": "0.1.3",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@forecasting/aggregation": "^0.0.1"
|
"@forecasting/aggregation": "^0.0.1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "forecasting",
|
"name": "forecasting",
|
||||||
"version": "0.1.0",
|
"version": "0.1.3",
|
||||||
"description": "Forecasting related utilities.",
|
"description": "Forecasting related utilities.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -15,6 +15,10 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@forecasting/aggregation": "^0.0.1"
|
"@forecasting/aggregation": "^0.0.1"
|
||||||
},
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/quantified-uncertainty/forecasting/"
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"lerna": "^4.0.0"
|
"lerna": "^4.0.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,7 @@ For an introduction to different aggregation methods, see Jaime Sevilla's [Aggre
|
||||||
|
|
||||||
- vanilla javascript
|
- vanilla javascript
|
||||||
- [Best readme template](https://github.com/othneildrew/Best-README-Template)
|
- [Best readme template](https://github.com/othneildrew/Best-README-Template)
|
||||||
|
- [lerna](https://github.com/lerna/lerna)
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@forecasting/aggregation",
|
"name": "@forecasting/aggregation",
|
||||||
"version": "1.0.2",
|
"version": "1.0.3",
|
||||||
"description": "Forecasting aggregation utilities",
|
"description": "Forecasting aggregation utilities",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user