Popularity
0.8
Stable
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: 1
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 -
Statistex
Calculate statistics on data sets, reusing previously calculated values or just all metrics at once. Part of the benchee library family. -
simple_stat_ex
Simple Stat Ex can be used to keep counters around hourly daily or other activity for an elixir project
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

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