We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tidy_multi_single_dist()
Issue 1: Currently we have:
td <- as.character(.tidy_dist)
Change to:
td <- tolower(as.character(.tidy_dist))
Issue 2: Currently there is no "tibble_type" in the attributes for the return data.frame. The current attributes are as follows:
# Attach attributes ---- attr(df_unnested_tbl, "all") <- atb attr(df_unnested_tbl, "tbl") <- "tidy_multi_tibble" attr(df_unnested_tbl, ".num_sims") <- max(param_grid$.num_sims) attr(df_unnested_tbl, ".param_list") <- .param_list
They need to be:
# Attach attributes ---- attr(df_unnested_tbl, "all") <- atb attr(df_unnested_tbl, "tibble_type") <- atb$tibble_type attr(df_unnested_tbl, "tbl") <- "tidy_multi_tibble" attr(df_unnested_tbl, ".num_sims") <- max(param_grid$.num_sims) attr(df_unnested_tbl, ".param_list") <- .param_list
The text was updated successfully, but these errors were encountered:
tidy_single_multi_dist()
71e41c0
spsanderson
No branches or pull requests
Issue 1:
Currently we have:
Change to:
Issue 2:
Currently there is no "tibble_type" in the attributes for the return data.frame. The current attributes are as follows:
They need to be:
The text was updated successfully, but these errors were encountered: