web-dev-qa-db-ja.com

RマークダウンにURLを追加するにはどうすればよいですか?

RマークダウンへのURLリンクを参照したいのですが、「addlink」や「address <-....」などの入力をすでに試しました。どちらも機能しません。 Rマークダウンにリンクを追加するにはどうすればよいですか?

ありがとう!

編集:コメントからのopのコードは

   {r} [linked phrase] (www.bit.ly/1EqAdIp)
12
Jennifer Liu

以下の@Haoの回答に注目してください。これはコードブロック内ではなく、本文内にある必要があります。

この素晴らしいリソース から

[I'm an inline-style link](https://www.google.com)

[I'm an inline-style link with title](https://www.google.com "Google's Homepage")

[I'm a reference-style link][Arbitrary case-insensitive reference text]

[I'm a relative reference to a repository file](../blob/master/LICENSE)

[You can use numbers for reference-style link definitions][1]

Or leave it empty and use the [link text itself]

Some text to show that the reference links can follow later.

[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com
31
Umaomamaomao

Rコードブロック内にハイパーリンクを配置しないでください。 xxxはマークダウン構文です。 {r}の後に置くと、knitr/rmarkdownはそれをRコードの一部として扱い、もちろんRはエラーメッセージを生成します。

解決策:{r}を削除します

5
Hao

Shinyを使用している場合、必要なことはマークアップ(白)領域のみです。

[linked phrase](www.bit.ly/1EqAdIp) #no space, no {r}

この方法では、ページのインタラクティブ部分(〜R)ではなく、text(= markup)にハイパーリンクを入力します。

4
DrRDN