• R/O
  • SSH

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

ファイル情報

Rev. aa22023e835eeb73e75acf6fe08e34c7ffe16e5e
サイズ 254 バイト
日時 2021-03-15 19:39:06
作者 Lorenzo Isella
ログメッセージ

A short rmarkdown file illustrating how to use variables calculated in R inside the main text of a document.

内容

---
title: "Country Focus in the Year x."
output: word_document
---


```{r seq, echo=FALSE, eval=T}
library(tidyverse)
x <- tibble(value=seq(2000,2020)) %>%
    pull(value) %>%
    max()

y <- x*2

```

Section

The number of years is `r x` and `r y`.