Code
BBASV %>%
group_by(series_code, series_name) %>%
summarise(Nobs = n()) %>%
print_table_conditionalData - BUBA
BBASV %>%
group_by(series_code, series_name) %>%
summarise(Nobs = n()) %>%
print_table_conditionalBBASV %>%
group_by(BBK_ACS2_REP_SECTOR, Sector) %>%
summarise(Nobs = n()) %>%
print_table_conditional| BBK_ACS2_REP_SECTOR | Sector | Nobs |
|---|---|---|
| KV | Health insurance corporations (Solvency I und II) | 24653 |
| S128 | Insurance corporations | 24653 |
| S128A | Reinsurance corporations | 24653 |
| S128B | Life insurance corporations excl. reinsurance corporations | 24653 |
| S128C | Non-life insurance corporations excl. reinsurance corporations | 24653 |
| SV | Property and casualty insurance corporations (Solvency I und II) | 24653 |
BBASV %>%
group_by(BBK_ACS2_COUNT_AREA, `Area (countries, list of countries), BBk only`) %>%
summarise(Nobs = n()) %>%
print_table_conditional| BBK_ACS2_COUNT_AREA | Area (countries, list of countries), BBk only | Nobs |
|---|---|---|
| 4S | Germany | 210 |
| 4W | Germany | 12 |
| AT | Germany | 6528 |
| BE | Germany | 6528 |
| CY | Germany | 6528 |
| EE | Germany | 6528 |
| ES | Germany | 6528 |
| FI | Germany | 6528 |
| FR | Germany | 6528 |
| GR | Germany | 6528 |
| IE | Germany | 6528 |
| IT | Germany | 6528 |
| LT | Germany | 6528 |
| LU | Germany | 6528 |
| LV | Germany | 6528 |
| MT | Germany | 6528 |
| NL | Germany | 6528 |
| PT | Germany | 6528 |
| SI | Germany | 6528 |
| SK | Germany | 6528 |
| U4 | Germany | 6936 |
| U5 | Germany | 6936 |
| W0 | Germany | 9384 |
| W2 | Germany | 6936 |
BBASV %>%
group_by(BBK_ACS2_COUNT_SECTOR, Sector) %>%
summarise(Nobs = n()) %>%
print_table_conditionalBBASV %>%
group_by(BBK_ACS2_ICPF_ITEM, Instrument) %>%
summarise(Nobs = n()) %>%
print_table_conditionalBBASV %>%
filter(series_code %in% c("Q.DE.M.S128.T00.T.1.W0.S1._T.EUR",
"Q.DE.M.S128.L40.T.1.W0.S1._T.EUR")) %>%
ggplot + geom_line(aes(x = period , y = value, color = `Instrument`))