Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プロットを含むチャンクを再利用すると、プロットが適切に参照されません。つまり、異なるはずの両方のチャンクで同じになります。私はそれについて何ができますか?
## Test ```{r} col <- "black" ``` ```{r chunk1} plot(0, col=col) ``` ```{r} col <- "red" ``` ```{r chunk1} ```
次のような別のラベルを使用する必要があります
```{r chunk2, ref.label='chunk1'} ```
http://yihui.name/knitr/demo/reference/を参照