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
Add a vignette providing best practices for logging and the job_summary_data field. This relates to unnest_job_summary_data_json_object() and PR #111. That function is limited by choices developers make during logging. We want to help them make better choices.
The issue arises when two objects in the log data have different row/member counts. The purrr functions can't reconcile the different number of repeats. To avoid this, all objects should have length 1 and/or N. Do not include a third length or a second length that does not equal 1.
The text was updated successfully, but these errors were encountered:
Add a vignette providing best practices for logging and the
job_summary_data
field. This relates tounnest_job_summary_data_json_object()
and PR #111. That function is limited by choices developers make during logging. We want to help them make better choices.The issue arises when two objects in the log data have different row/member counts. The
purrr
functions can't reconcile the different number of repeats. To avoid this, all objects should have length 1 and/or N. Do not include a third length or a second length that does not equal 1.The text was updated successfully, but these errors were encountered: