We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5ad5b0 commit 0926159Copy full SHA for 0926159
tests/testthat/test-FitMaxnet.R
@@ -77,7 +77,7 @@ test_that("FitMaxnet handles factor variables", {
77
78
test_that("FitMaxnet removes rows with NA", {
79
temp_data <- mock_data
80
- temp_data$var1[1:5] <- NA # introduce NA
+ temp_data$var1[1:5] <- NA # introduce NA
81
82
model <- FitMaxnet(
83
data = temp_data,
@@ -95,7 +95,7 @@ test_that("FitMaxnet removes rows with NA", {
95
test_that("FitMaxnet produces a maxnet object", {
96
# Create data where one variable is noise
97
noisy_data <- mock_data
98
- noisy_data$noise <- rnorm(n) * 1e-6 # basically noise
+ noisy_data$noise <- rnorm(n) * 1e-6 # basically noise
99
100
model_full <- FitMaxnet(
101
data = noisy_data,
0 commit comments