Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,7 @@ importFrom(tidyr,separate)
importFrom(tidyr,spread)
importFrom(tidyr,unite)
importFrom(tidyr,unnest_legacy)
importFrom(tidyr,unnest)
importFrom(tidyselect,all_of)
importFrom(tidyselect,any_of)
importFrom(tidyselect,one_of)
Expand Down
2 changes: 1 addition & 1 deletion R/spread_draws.R
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ spread_draws_long_ = function(
# 2. ADD CHAIN INFO
nested_draws[[".chain_info"]] = list(draws[, draw_indices])
# 3. UNNEST
long_draws = unnest_legacy(nested_draws)
long_draws = unnest(nested_draws, -!!dimension_names)
}

#drop the columns that correspond to blank dimensions in the original spec
Expand Down