Couldn’t see a solution online but I thought this might be quite common.
- with
write.csvI basically always have the argumentrow.nameset 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 thepastefunction). This is another one, I always setsep=""withpaste… - like I always have
exclude=NULLwhen I am usingtableso 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.
Try this:
This creates a new copy of
pastein your workspace, and then modifies its default value forsepto"". Subsequent calls topastewill then use the modified copy, as it sits in front of the base environment in your search path.