README.Rmd 586 Bytes
Newer Older
Keisuke ANDO's avatar
Keisuke ANDO committed
1
2
3
4
5
---
title: "socceR"
output: github_document
---

6
7
8
9
10
RoboCup Soccer 2Dの試合分析のためのツール群

### `read_rcl`

指定されたrclファイルを解析し、tibbleにして返します。
Keisuke ANDO's avatar
Keisuke ANDO committed
11
12
13
14

```{r, message=FALSE, collapse = TRUE}
library(tidyverse)
source("R/read_rcl.R")
15
read_rcl("data/20220405162804-HELIOS_base_3-vs-enemy_2.rcl")
16
17
18
19
20
21
22
23
24
25
26
```

### `read_rcg`

指定されたrcgファイルを解析し、tibbleにして返します。

```{r, message=FALSE, collapse = TRUE}
library(tidyverse)
source("R/read_rcg.R")
read_rcg("data/20220405162804-HELIOS_base_3-vs-enemy_2.rcg")
```