
Offentlig statistik og indsigt.
Samfund, Økonomi og Klima
---
pagetitle: Grønlands Statistik
page-layout: custom
toc: false
listing:
- id: news-listing
contents: "releases/*.qmd"
template: ../ejs/pub-calendar.ejs
sort: "date desc"
template-params:
maxItems: 2
- id: tema-listing
contents: "tema/*.qmd"
template: ../ejs/tema-card.ejs
sort: "date desc"
template-params:
maxItems: 1
lang: da
aliases:
- /index.html
---
::: {.hero-banner .justify-content-center .text-center}
# Grønlands Statistik
{.hero-logo .d-block .mx-auto .my-3 style="max-width:300px"}
Offentlig statistik og indsigt. <br>
Samfund, Økonomi og Klima
::: {.d-flex .flex-wrap .justify-content-center .gap-3 .pt-4 .pb-3}
[Statistikbank](https://bank.stat.gl/pxweb/da/Greenland/){.btn .btn-primary}
[Planlagte udgivelser](release.html){.btn .btn-tertiary}
:::
:::
```{r}
library(tidyverse)
library(statgl)
library(glue)
quarterly_pop <-
statgl_fetch("BEDSTK1", `time (primo)` = px_top(), .col_code = TRUE) %>%
pull(value, name = `time (primo)`) %>%
format(big.mark = ".", decimal.mark = ",")
gdp_yearly_growth <-
statgl_fetch("NRD10", time = px_top(), units = "K", account = "04") %>%
mutate(
label = glue("{ifelse(value >= 0, '▲ ', '▼ ')}{format(value, decimal.mark = ',')} %")
) %>%
pull(label, Aar)
prices_yearly <-
statgl_fetch("PRDPRISH", time = px_all(), .col_code = TRUE) %>%
drop_na() %>%
tail(1) %>%
mutate(
label = glue("{ifelse(value >= 0, '▲ ', '▼ ')}{format(value, decimal.mark = ',')} %")
) %>%
pull(label, time)
unemployment_rate <-
statgl_fetch("ARXLED3", opg_var = "P", aar = px_top()) %>%
pull(value, time) %>%
format(decimal.mark = ",")
```
::: {.kpi-grid}
::: {.grid}
::: {.g-col-6 .g-col-md-3}
{{< kpicard
title = "Grønlands Befolkning"
subtitle = '`r names(quarterly_pop)`'
value = "`r quarterly_pop[[1]]`"
link = statistics/inuit/BE
style= "height:100%;"
>}}
:::
::: {.g-col-6 .g-col-md-3}
{{< kpicard
title = "Realvækst BNP"
subtitle = "`r names(gdp_yearly_growth)` (foreløbig)"
value = "`r gdp_yearly_growth[[1]]`"
link = statistics/aningaasat/NR/national_accounts.html
style= "height:100%;"
>}}
:::
::: {.g-col-6 .g-col-md-3}
{{< kpicard
title = "Årlig inflation (CPI)"
subtitle = "`r names(prices_yearly)`"
value = "`r prices_yearly[[1]]`"
link = statistics/aningaasat/PR/cpi.html
style= "height:100%;"
>}}
:::
::: {.g-col-6 .g-col-md-3}
[kpicard
title = "Ledighed"
subtitle = "`r names(unemployment_rate)`"
value = "`r paste(unemployment_rate[[1]] , "[]{.quarto-shortcode__-param data-is-shortcode="1" data-value="%")`"" data-raw="%\")`\""}
link = statistics/aningaasat/AR/unemployment_rate.html
style= "height:100%;"
]{.quarto-shortcode__ data-is-shortcode="1" data-raw="{{< kpicard
title = \"Ledighed\"
subtitle = \"`r names(unemployment_rate)`\"
value = \"`r paste(unemployment_rate[[1]] , \"[]{.quarto-shortcode__-param data-is-shortcode=\"1\" data-value=\"%\")`\"\" data-raw=\"%\\\")`\\\"\"}
link = statistics/aningaasat/AR/unemployment_rate.html
style= \"height:100%;\"
>}}"}
:::
:::
:::
::: {.kpi-grid}
## Sektioner
::: {.grid}
::: {.g-col-12 .g-col-md-4}
{{< sectioncard
title="Personer"
text="Befolkning, uddannelse og livsvilkår."
link="statistics/inuit/index.html"
icon="bi-people"
>}}
:::
::: {.g-col-12 .g-col-md-4}
{{< sectioncard
title="Økonomi"
text="Arbejdsmarked, erhverv og handel"
link="statistics/aningaasat/index.html"
icon="bi-cash-stack"
>}}
:::
::: {.g-col-12 .g-col-md-4}
{{< sectioncard
title="Energi og Klima"
text="Grønlands energiforbrug, udledninger, og temperaturer"
link="statistics/sila/index.html"
icon="bi-snow2"
>}}
:::
:::
:::
::: {.kpi-grid}
:::{.grid}
::: {.g-col-12 .g-col-md-6}
## Tema
::: {#tema-listing}
:::
[Se alle temasider →](tema/){.pub-footer}
:::
::: {.g-col-12 .g-col-md-6}
## Seneste nyt
::: {#news-listing}
:::
[Se tidligere udgivelser →](releases/){.pub-footer}
:::
:::
:::