Skip to content

Error Message while Package creation

3 messages · Crish.., Berend Hasselman

#
Hello Guys,

I wanted to build a new R package from the R code. I installed all the
required software and made all the path settings. 

When i tried running, 
cmd> RCMD check SamplePackageName 

while "Checking R code for possible errors"

i have encountered a note saying: waning in png(file=Output_FileName,
width=840, height=480, unit="px"): partial argument match of 'file' to
'filename'.

I don't have any idea of what this warning is. Any help is really
appreciated.

Thanks




--
View this message in context: http://r.789695.n4.nabble.com/Error-Message-while-Package-creation-tp4665346.html
Sent from the R devel mailing list archive at Nabble.com.
#
On 25-04-2013, at 07:21, Crish.. <krishnaiah.ac at gmail.com> wrote:

            
It is exactly what it says. The relevant argument has name "filename" and not file (an abbreviation).
Use filename=Output_FileName.

Berend