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
There are inconsistencies in how separate_rows works in version 1.1.1 compared to version 1.1.0. I noticed it when my code that was working in 1.1.0 was now returning errors due to empty data.frames and other errors (in 1.1.1).
# reprex (version 1.1.0)>iris %>% separate_rows(Species, sep=";")
# A tibble: 150 x 5Sepal.LengthSepal.WidthPetal.LengthPetal.WidthSpecies<dbl><dbl><dbl><dbl><chr>15.13.51.40.2setosa24.931.40.2setosa34.73.21.30.2setosa44.63.11.50.2setosa553.61.40.2setosa65.43.91.70.4setosa74.63.41.40.3setosa853.41.50.2setosa94.42.91.40.2setosa104.93.11.50.1setosa# … with 140 more rows
There are inconsistencies in how
separate_rows
works in version 1.1.1 compared to version 1.1.0. I noticed it when my code that was working in 1.1.0 was now returning errors due to empty data.frames and other errors (in 1.1.1).Also, try both versions on a dataframe with a column of empty strings in it:
In version 1.1.0 it returns the full original dataframe, while in version 1.1.1 it returns an empty dataframe.
From a quick glimpse on recent changes, I think it comes down to the following change:
f0bcfd9#diff-46dad93d5ee31264d672c8ed8c984258
I tried to see what could be the source for the difference by looking at:
The text was updated successfully, but these errors were encountered: