Skip to content

Commit

Permalink
Fix missing bracket (VowpalWabbit#1333)
Browse files Browse the repository at this point in the history
Installation from Github is failing because of a missing bracket in this script.
  • Loading branch information
abelsonlive authored and JohnLangford committed Oct 11, 2017
1 parent 98b8038 commit 5832438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/r.vw/R/vw.R
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ vw <- function(training_data, validation_data, model='mdl.vw',
path_data_args = list(path_vw_data_train, path_vw_data_val)
for(i in seq_along(data_args))
{
if (inherits(data_args[[i], "data.frame"))
if (inherits(data_args[[i]], "data.frame"))
{
if(is.null(target))
stop(paste0(names(data_args)[i],
Expand Down

0 comments on commit 5832438

Please sign in to comment.