Popularity
1.1
Growing
Activity
0.0
Stable
4
2
0
Description
Elixir OTP application wrapper for the World Population API (more information here http://api.population.io/)
Monthly Downloads: 2
Programming language: Elixir
License: MIT License
Population alternatives and similar packages
Based on the "Statistics" category.
Alternatively, view Population alternatives based on common mentions on social networks and blogs.
-
Plausible Analytics
Simple, open-source, lightweight (< 1 KB) and privacy-friendly web analytics alternative to Google Analytics. -
numerix
A collection of useful mathematical functions in Elixir with a slant towards statistics, linear algebra and machine learning -
Emel
A simple and functional machine learning library for the Erlang ecosystem -
Statistex
Calculate statistics on data sets, reusing previously calculated values or just all metrics at once. Part of the benchee library family. -
descriptive_statistics
Descriptive Statistics for Elixir -
simple_stat_ex
Simple Stat Ex can be used to keep counters around hourly daily or other activity for an elixir project
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of Population or a related project?
README
Population
Elixir OTP application library for the World Population API.
Public API
See the full online documentation here.
Countries: list available countries
Life Expectancy: calculate life expectancy
- remaining_life_expectancy/4
- remaining_life_expectancy!/4
- total_life_expectancy/3
- total_life_expectancy!/3
Mortality Distribution: retrieve mortality distribution tables
World Population Rank: determine world population rank
- rank_today/3
- rank_today!/3
- rank_by_date/4
- rank_by_date!/4
- rank_by_age/4
- rank_by_age!/4
- rank_in_past/4
- rank_in_past!/4
- rank_in_future/4
- rank_in_future!/4
- date_by_rank/4
- date_by_rank!/4
Population : retrieve population tables
- tables/2
- tables!/2
- table_by_country/3
- table_by_country!/3
- tables_for_all_ages_by_country/2
- tables_for_all_ages_by_country!/2
- tables_for_all_years_by_country/2
- tables_for_all_years_by_country!/2
- table_for_country_by_date/2
- table_for_country_by_date!/2
- tables_for_today_and_tomorrow_by_country/1
- tables_for_today_and_tomorrow_by_country!/1
Installation
- Add
population
to your list of dependencies inmix.exs
:
def deps do
[{:population, "~> 0.1.0"}]
end
- Ensure
population
is started before your application:
def application do
[applications: [:population]]
end