Skip to content
Snippets Groups Projects
Commit 9e5072d1 authored by Riccardo Boero's avatar Riccardo Boero :innocent:
Browse files

Name update

parent 908d3b32
No related branches found
No related tags found
No related merge requests found
# API Reference
```@autodocs
Modules = [FACTDataReader]
Modules = [FACT_data_API_reader]
Private
Order = [:function, :type]
```
```@docs
FACTDataReader.FACTDataReader
FACT_data_API_reader.FACT_data_API_reader
```
\ No newline at end of file
......@@ -15,9 +15,11 @@ This function retrieves population data for specified LAUs in the European Union
- `DataFrame`: A DataFrame containing columns for `geo_id` (LAU code), `region` (region identifier, always "EU"), and `population` representing the population count for the specified LAUs in the given year.
# Example
> conn = MySQL.Connection(user="user", password="password", host="localhost", db="eu_population")
> selection = Dict("year" => 2011, "geo_id" => ["LAU1", "LAU2"])
> df = eu_lau(conn, selection)
``` julia
conn = MySQL.Connection(user="user", password="password", host="localhost", db="eu_population")
selection = Dict("year" => 2011, "geo_id" => ["LAU1", "LAU2"])
df = eu_lau(conn, selection)
```
This example retrieves population data for two EU LAUs in the year 2011.
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment