私は次のガイドに従っています: 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 でも実行することになっているパッケージはありますか?