Couldn't see a solution online but I thought this might be quite common.
- with
write.csv
I basically always have the argumentrow.name
set to F. Is it possible to run a line once and update the default value of the argument for the rest of the session? - I tried
paste <- paste(sep="")
which ran and returned no error but seemed to do nothing (and didn't destroy thepaste
function). This is another one, I always setsep=""
withpaste
... - like I always have
exclude=NULL
when I am usingtable
so I can see the N/A values.
EDIT: So, I'm looking for a solution that will work for multiple functions if possible: paste
, write.csv
, table
and other functions like these.
paste
, there'spaste0
wheresep = ""
by default. – Lahr