README.Rmd 377 Bytes
Newer Older
Keisuke ANDO's avatar
Keisuke ANDO committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
title: "socceR"
output: github_document
---

### RCLファイルを読む関数ができました --- 使い方

```{r, message=FALSE, collapse = TRUE}
# tidyverseをインポートする
library(tidyverse)

# 作った関数を読み込む
source("R/read_rcl.R")

# ファイルを指定するだけ
read_rcl("data/20220304142841-HELIOS_base_1-vs-ThunderLeague_1.rcl")
```