当列名使用`字符(重音符)时,如何在markdown的r行代码中包含?
---
title: "Untitled"
output: pdf_document
---
```{r}
df <- as.data.frame(c(9,3,4))
colnames(df) <- c("Depth (cm)")
```
The mean depth is `r mean(df$`Depth (cm)`)`
我收到“解析错误(文本=代码,keep.source = FALSE)”。
有什么想法吗?
答案 0 :(得分:0)
---
title: "Untitled"
output: pdf_document
---
```{r}
df <- as.data.frame(c(9,3,4))
colnames(df) <- c("Depth (cm)")
```
The mean depth is `r mean(df$"Depth (cm)")`
答案 1 :(得分:0)