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
patchwork
I'm using a loop to go over data. How do I create an empty patchwork object
Let's say my loop looks like this:
df_save <- tibble() for (idx in my_names){ ## Do stuff .... out <- my_cool_function() df_save <- df_save |> bind_rows(out) }
How would I do this with patchwork? I didn't find a way to create a patchwork object that I could add to in the documentation.
The text was updated successfully, but these errors were encountered:
I would generally store the plots you create in a list and use wrap_plots() to turn them into a patchwork
wrap_plots()
Sorry, something went wrong.
No branches or pull requests
I'm using a loop to go over data. How do I create an empty
patchwork
objectLet's say my loop looks like this:
How would I do this with
patchwork
? I didn't find a way to create apatchwork
object that I could add to in the documentation.The text was updated successfully, but these errors were encountered: