;,
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
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
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
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)
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
Hello,
I'm trying to submit my package to CRAN but receiving the following error
message.
object 'connectionString' not found
even if it is parameter of get_DB_info(connectionString) function - see the
function definition below error message.
Please, can you help me to understand wh