Of course I can speak only for myself, but I'd help out if asked and I think in
general you'll find people here to be a pretty helpful bunch.
Cheers,
Boris
On Feb 5, 2016, at 8:30 AM, Charles Determan wrote:
> I'm not sure if this question is appropriate for the R mailing lists but
> I'm not
Have you considered putting the explicit case into a comment? Something like ...
# For output to a CSV file, we would assign: myCSV <- "myResults.csv"
# ... but for this example we will use the value of tempfile() as the file name:
myCSV <- tempfile()
results <- doSomething(x, csvFile = myCSV, ...