Skip to content

Commit ed89ccc

Browse files
authored
Fix Crowdin Markdown parser bug
1 parent 1cf1a64 commit ed89ccc

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

locale/ja/episodes/30-dplyr.Rmd

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -586,17 +586,16 @@ pivot_wider\`は主に3つの引数を取る:
586586
3. value_from\`: 新しいカラム
587587
を埋める値。
588588

589-
\`\`{r, fig.cap="`rna`データのワイドピボット。", echo=FALSE, message=FALSE}
589+
```{r, fig.cap="Wide pivot of the `rna` data.", echo=FALSE, message=FALSE}
590590
knitr::include_graphics("fig/pivot_wider.png")
591-
592-
````
591+
```
593592
594593
```{r, purl=TRUE}
595594
rna_wide <- rna_exp %>%
596595
pivot_wider(names_from = sample,
597596
values_from = expression)
598597
rna_wide
599-
````
598+
```
600599

601600
デフォルトでは、`pivot_wider()` 関数は欠損値に対して `NA` を追加することに注意してください。
602601

0 commit comments

Comments
 (0)