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
In dplyr functions, the first argument are mostly .data to prevent possible conflicts. But in tidyr, most functions use data as the first argument. And it creates an issue that when setting data as column name.
For example:
Since data is already used as the first argument of pack() function, when using "data" as a column, it will throw an error message.
In
dplyr
functions, the first argument are mostly.data
to prevent possible conflicts. But intidyr
, most functions usedata
as the first argument. And it creates an issue that when settingdata
as column name.For example:
Since
data
is already used as the first argument ofpack()
function, when using "data" as a column, it will throw an error message.throws an error message:
The same applies to at least
pack
,unpack
,chop
andunchop
The text was updated successfully, but these errors were encountered: