This dataset, jpn_suicides_tbl_df, is a tibble containing the number of suicides in Japan from 1978 to 2022 by sex and age group. The dataset includes suicide counts for males and females, overall suicide rates, and counts by specific age ranges. The dataset preserves the original structure from its source on Kaggle.
data(jpn_suicides_tbl_df)A tibble with 45 observations and 14 variables:
Year of observation (numeric)
Number of male suicides (numeric)
Number of female suicides (numeric)
Overall suicide rate (numeric)
Suicide rate among males (numeric)
Suicide rate among females (numeric)
Number of suicides aged 0–19 (numeric)
Number of suicides aged 20–29 (numeric)
Number of suicides aged 30–39 (numeric)
Number of suicides aged 40–49 (numeric)
Number of suicides aged 50–59 (numeric)
Number of suicides aged 60 and above (numeric)
Number of suicides with unknown age (numeric)
Total number of suicides (numeric)
The dataset name has been kept as 'jpn_suicides_tbl_df' to maintain consistency with the naming conventions in the JapanAPIs package. The suffix 'tbl_df' indicates that this is a tibble data frame. The original content has not been modified in any way.