Package Exports
- @ifct2017/frequencydistribution
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ifct2017/frequencydistribution) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Frequency distribution of States/UTs for fixing the number of districts to be sampled.
This is part of package ifct2017.
Source: Indian Food Composition Tables 2017.
const frequencyDistribution = require('@ifct2017/frequencydistribution');
// frequencyDistribution.corpus: Map {districts (start) => {districts, states, selected, sampled}}
// frequencyDistribution.load(): true (corpus loaded)
// frequencyDistribution.sql([table], [options]): sql commands
// frequencyDistribution.csv(): path to csv file
// frequencyDistribution(<districts>)
// -> {districts, states, selected, sampled}
frequencyDistribution.load();
/* load corpus first */
frequencyDistribution(2);
frequencyDistribution(5);
// { districts: '1-5', states: 9, selected: 1, sampled: 9 }
frequencyDistribution(32);
frequencyDistribution(37);
// { districts: '31-40', states: 4, selected: 5, sampled: 20 }You can ask about composition of 528 key foods in India here: ifct2017.github.io.
Food composition values were measured by National Institute of Nutrition, Hyderabad.
