R Markdown到PDF转换错误

时间:2018-02-16 18:12:32

标签: r r-markdown

我正在将长文件从.rmd转换为.pdf

但是当我尝试编织时,它总是显示此错误:

   Error in pls::mvr(form, ncomp = ncomp, data = DCVf, validation = "none",  : 
   Invalid number of components, ncomp

在此错误之前,系统会提示此行:

Quitting from lines 395-690 (a.Rmd) 

在这一行上这是代码: -

After this, once these libraries are included:-

{r} library(ElemStatLearn) library(leaps) library(caret) library(bestglm) library(glmnet) library(pls)

we can obtain our analysis in the following manner:
```{r}

prostate = prostate
index = createDataPartition(prostate$lpsa, p = 0.7, list = FALSE)
train <- prostate[ index,]
test  <- prostate[-index,]
```

1 个答案:

答案 0 :(得分:0)

我意识到问题是什么。因为我没有打算运行代码,反正它也不会运行 - 我应该用

包围代码
```
code
```

而不是

```{r}
code
```

再次出现错误,因为为了运行代码,必须解决许多必需品。完成上述替换后,我的文档可以轻松编织

PS:

```{r}
code
```

仅在我们想要执行代码时使用。