jpaccidents is package for handling the traffic accident data in Japan. This package covers the traffic accident data provided by the National Police Agency of Japan.
jpaccidentsは日本の交通事故のデータを扱うためのパッケージです。 このパッケージでは、警察庁が提供する交通事故データを対象としています。
Installation
You can install the development version of jpaccidents like so:
jpaccidentsの開発版は以下のコマンドからインストールできます。
install.packages("remotes")
remotes::install_git("https://github.com/NONONOexe/jpaccidents")
Usage
Load the package as follows:
パッケージを以下のようにして読み込みます。
The traffic accident data can be used follows:
交通事故のデータは次のようにして利用することができます。
downloaded_path <- download_accident_main_data(download_dir = "download-dir-path", year = 2022)
main_data <- read_accident_main_data(downloaded_path)
There are three types of traffic accident data: main (honhyo), sub (hojyuhyo), and highway (kosokuhyo) data. The package provides functions for each of these. Use the function appropriate for the data you need. See also ? download_accident_main_data
for more information.
交通事故のデータは本票、補充票、高速票の3種類があります。 それぞれに対応する関数が用意されています。 必要なデータに応じて利用してください。 詳しくは
? download_accident_main_data
を参照してください。
License
This project is licensed under the Creative Commons Attribution 4.0 International License.
このプロジェクトはクリエイティブ・コモンズ 表示 4.0 国際 ライセンスに従います。
Code of Conduct
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
このプロジェクトは行動規範を設けています。 したがって、このプロジェクトでは参加者にこの行動規範に従うことを求めます。