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
hmm I'm not sure this matches the spirit of these helpers because they are meant to be used in programmatic contexts where you need to be sure of the names of the columns you are targeting.
Well in my personal case, I'm confronted with a set of data frames from which I should select 2 columns that can or cannot exist, and when they exist they can be uppercase or lowercase.
This is because they can come from either R (lowercase) or SAS (uppercase).
Maybe this is a very specific case but I think many can relate, especially when datasets share a common structure but are implemented in different systems.
hmm I think in this case it's best to standardise the column names during the data cleaning step and use only one convention in the rest of the script. There is less chance of making a mistake and less mental overhead thinking about the data frames.
Hi,
Would it be possible to add a
ignore.case=TRUE
option inany_of()
andall_of()
like there is instarts_with()
and its friends?Workaround in the meantime:
The text was updated successfully, but these errors were encountered: