README.Rmd 345 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")
Keisuke ANDO's avatar
Keisuke ANDO committed
16
```