Skip to contents

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.

Usage

data(jpn_suicides_tbl_df)

Format

A tibble with 45 observations and 14 variables:

year

Year of observation (numeric)

num_suicide_male

Number of male suicides (numeric)

num_suicide_female

Number of female suicides (numeric)

suicide_rate

Overall suicide rate (numeric)

suicide_rate_male

Suicide rate among males (numeric)

suicide_rate_female

Suicide rate among females (numeric)

num_suicide_age_0_19

Number of suicides aged 0–19 (numeric)

num_suicide_age_20_29

Number of suicides aged 20–29 (numeric)

num_suicide_age_30_39

Number of suicides aged 30–39 (numeric)

num_suicide_age_40_49

Number of suicides aged 40–49 (numeric)

num_suicide_age_50_59

Number of suicides aged 50–59 (numeric)

num_suicide_60_plus

Number of suicides aged 60 and above (numeric)

num_suicide_age_unknown

Number of suicides with unknown age (numeric)

num_suicide_total

Total number of suicides (numeric)

Details

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.