You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
some examples use gsub(pattern = '', replacement = "", x = "")
We should in general use x first - thus those examples should be reversed.
The situation where x can justifiably be last is when pattern and repl are unchanged and x is the only thing that changes. Having x at the end in such situations would increase legibility...
The text was updated successfully, but these errors were encountered:
some examples use
gsub(pattern = '', replacement = "", x = "")
We should in general use x first - thus those examples should be reversed.
The situation where x can justifiably be last is when pattern and repl are unchanged and x is the only thing that changes. Having x at the end in such situations would increase legibility...
The text was updated successfully, but these errors were encountered: