0

私はRを初めて使用し、コースの一環として最初のR Markdownをpdfに編み込もうとしました。警告メッセージが表示されたままになりました (以下で太字で強調表示されています)。Pdf は生成されましたが、グラフはまったくトリミングされませんでした。pdfcrop はインストールされていますが、どういうわけか RStudio が pdfcrop を見つけることができないようです。パスに追加するとうまくいくと思いますが、これを行う方法がわかりません。以前は、Sys.setenv(R_GSCMD="C:/Program Files/gs/gs9.54.0/bin/gswin64.exe") を実行することで解決された Ghostscript と同じ問題がありました。

ヘルプと入力は大歓迎です。前もって感謝します。

私がした手順:

  1. LateX ディストリビューションから TinyTex をインストールしました。
  2. インストールされたゴーストスクリプト
  3. tinytex::tlmgr_install("pdfcrop") を使用して pdfcrop をインストールしました
  4. Sys.which('pdfcrop')、そしてそれは空の文字列を与えます - "" 私はWindows O / SとRstudioを使用しています。

作成された出力: MyFirstRMarkDown.pdf 警告メッセージ: has_crop_tools() 内: ツールがインストールされていないか、PATH にありません: pdfcrop -> その結果、図のトリミングは無効になります。


以下はソースファイルです。

---
title: "My first R Markdown doc"
author: Sanjukta Samom
output: pdf_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

## R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

```{r cars}
summary(cars)
```

```{r} 
print("Hello World")
```

## Including Plots

You can also embed plots, for example:

```{r pressure, echo=FALSE}
plot(pressure)
```

Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
4

0 に答える 0