Re: [R-pkg-devel] Weird error message during R CMD Check

2018-03-15 Thread Michael Nelson
;, real_pathtocsvfile, " ", "null", sep = "") # Call shell command oldw <- getOption("warn") options(warn = -1) sc <- shell(ss) if (file.exists(file_to_be_deleted)){ out <- data.table::fread(file_to_be_deleted, stringsAsFact

Re: [R-pkg-devel] Weird error message during R CMD Check

2018-03-15 Thread martiankabe
Thank you very much Michael, this perfectly works. Martin Od: Michael Nelson Odesláno: 15 March 2018 07:43 Komu: martiank...@gmail.com; r-package-devel@r-project.org Předmět: Re: [R-pkg-devel] Weird error message during R CMD Check I don’t think the suggestion below will work as it

Re: [R-pkg-devel] Weird error message during R CMD Check

2018-03-14 Thread Marcelino de la Cruz Rot
sql_task, " ", real_pathtocsvfile, " ", "null", sep = "") # Call shell command oldw <- getOption("warn") options(warn = -1) sc <- shell(ss) if (file.exists(file_to_be_deleted)){ out <- data.table::fread(file_t

Re: [R-pkg-devel] Weird error message during R CMD Check

2018-03-14 Thread martiankabe
sep = "") # Call shell command oldw <- getOption("warn") options(warn = -1) sc <- shell(ss) if (file.exists(file_to_be_deleted)){ out <- data.table::fread(file_to_be_deleted, stringsAsFactors = FALSE, sep = "~", fill = TRUE)

Re: [R-pkg-devel] Weird error message during R CMD Check

2018-03-13 Thread Duncan Murdoch
On 13/03/2018 4:53 PM, martiank...@gmail.com wrote: Hello, I'm trying to submit my package to CRAN but receiving the following error message. object 'connectionString' not found Your example never defined a variable called connectionString, so you can't pass it to a function. Dun