我正在遵循以下指南:https ://joshldavis.com/2014/04/12/beginners-tutorial-for-knitr/
我已经安装了knitr
包并在 R 中运行它,我正在尝试从上面的链接中复制并粘贴示例:
From ISLR: Chapter 3, Problem 14.
Using a created simulated data, answer the questions regarding simple
linear regression.
<<>>=
# Ensure consistent values
set.seed(1)
# Create uniform distribution for first input
x1 <- runif(100)
# Normal distribution for second input
x2 <- 0.5 * x1 + rnorm(100) / 10
# Our Linear Model
y <- 2 + (2 * x1) + (.3 * x2) + rnorm(100)
@
但是,当我尝试运行它时,我在 Latex 中收到以下错误:
! You can't use `macro parameter character #' in horizontal mode.
l.30 #
Ensure consistent values
?
我不太确定我在这里做错了什么?我也应该在 Latex 中运行任何软件包吗?