Commit cb5f6f04 authored by Keisuke ANDO's avatar Keisuke ANDO 😌
Browse files

[update] ログの最新化とREADMEの更新

No related merge requests found
Showing with 277016 additions and 214076 deletions
+277016 -214076
......@@ -3,15 +3,14 @@ title: "socceR"
output: github_document
---
### RCLファイルを読む関数ができました --- 使い方
RoboCup Soccer 2Dの試合分析のためのツール群
### `read_rcl`
指定されたrclファイルを解析し、tibbleにして返します。
```{r, message=FALSE, collapse = TRUE}
# tidyverseをインポートする
library(tidyverse)
# 作った関数を読み込む
source("R/read_rcl.R")
# ファイルを指定するだけ
read_rcl("data/20220304142841-HELIOS_base_1-vs-ThunderLeague_1.rcl")
read_rcl("data/20220405162804-HELIOS_base_3-vs-enemy_2.rcl")
```
\ No newline at end of file
socceR
================
### RCLファイルを読む関数ができました — 使い方
RoboCup Soccer 2Dの試合分析のためのツール群
### `read_rcl`
指定されたrclファイルを解析し、tibbleにして返します。
``` r
# tidyverseをインポートする
library(tidyverse)
# 作った関数を読み込む
source("R/read_rcl.R")
# ファイルを指定するだけ
read_rcl("data/20220304142841-HELIOS_base_1-vs-ThunderLeague_1.rcl")
## # A tibble: 485,911 x 6
## step team unum command args line
## <chr> <chr> <chr> <chr> <list> <chr>
## 1 0 HELIOS_base 1 init <chr [1]> "0,19\tRecv HELIOS_base_1: (init~
## 2 0 HELIOS_base 1 version <chr [1]> "0,19\tRecv HELIOS_base_1: (init~
## 3 0 HELIOS_base 1 goalie <chr [0]> "0,19\tRecv HELIOS_base_1: (init~
## 4 0 HELIOS_base 1 synch_see <chr [0]> "0,19\tRecv HELIOS_base_1: (sync~
## 5 0 HELIOS_base 1 ear <chr [0]> "0,19\tRecv HELIOS_base_1: (sync~
## 6 0 HELIOS_base 1 off <chr [1]> "0,19\tRecv HELIOS_base_1: (sync~
## 7 0 HELIOS_base 1 clang <chr [0]> "0,19\tRecv HELIOS_base_1: (sync~
## 8 0 HELIOS_base 1 ver <chr [1]> "0,19\tRecv HELIOS_base_1: (sync~
## 9 0 HELIOS_base 1 turn <chr [1]> "0,20\tRecv HELIOS_base_1: (turn~
## 10 0 HELIOS_base 1 turn_neck <chr [1]> "0,20\tRecv HELIOS_base_1: (turn~
## # ... with 485,901 more rows
read_rcl("data/20220405162804-HELIOS_base_3-vs-enemy_2.rcl")
## # A tibble: 867,098 x 6
## step team unum command args line
## <chr> <chr> <chr> <chr> <list> <chr>
## 1 0 HELIOS_base 1 init <chr [1]> "0,114\tRecv HELIOS_base_1: (i~
## 2 0 HELIOS_base 1 version <chr [1]> "0,114\tRecv HELIOS_base_1: (i~
## 3 0 HELIOS_base 1 goalie <chr [0]> "0,114\tRecv HELIOS_base_1: (i~
## 4 0 HELIOS_base 1 synch_see <chr [0]> "0,115\tRecv HELIOS_base_1: (s~
## 5 0 HELIOS_base 1 ear <chr [0]> "0,115\tRecv HELIOS_base_1: (s~
## 6 0 HELIOS_base 1 off <chr [1]> "0,115\tRecv HELIOS_base_1: (s~
## 7 0 HELIOS_base 1 clang <chr [0]> "0,115\tRecv HELIOS_base_1: (s~
## 8 0 HELIOS_base 1 ver <chr [1]> "0,115\tRecv HELIOS_base_1: (s~
## 9 0 HELIOS_base 1 change_view <chr [1]> "0,115\tRecv HELIOS_base_1: (c~
## 10 0 HELIOS_base 1 turn <chr [1]> "0,115\tRecv HELIOS_base_1: (t~
## # ... with 867,088 more rows
```
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment