Incorrect download instructions for wine

Issue #27 new
Colin Gillespie created an issue

Under ?wine, the R code is wrong:

  UCI <- "http://archive.ics.uci.edu/ml"
  REPOS <- "machine-learning-databases"
  wine.url <- sprintf("                                     ### WRONG
  wine <- read.csv(wine.url, header=FALSE) 

Comments (1)

  1. Graham Williams repo owner

    Thanks Colin. I see the problem - the % is a comment character...

    wine.url <- sprintf("%s/%s/wine/wine.data", UCI, REPOS)

    Regards, Graham

  2. Log in to comment