-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
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
Allow data.frame row-binding comparison (Fix #50) #284
Conversation
You are the best! I will review in the AM. If you have any other thoughts, additions, etc. for the 4/21 CRAN release let me know. I could send a PR with my adorn_cumulative() for you to review, per #238 - I've used it in my own work and found it acceptable. |
Bah I prob can't get to this in full until at least Monday afternoon, sorry. But I'm excited to get this merged for 1.2 submission this week! One thing I wondered while at the park today and just tried out: I don't think this runs on a list. Which is a common use case for Do you think it would be worthwhile to allow it to take either several unquoted data.frames or a list of data.frames, like how
|
It took a bit to work through the complexity of the mixed inputs, but the updated PR works for me with list inputs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks great! I did a formal review to better organize my thoughts, hope you don't mind. I think most of it is cosmetic, like naming etc. Let me know what you think. I am so excited to see this function in action, I think it fills a big hole in the data cleaning world and your programming of it is 💯
I think that I got everything, but if I missed something, please let me know. |
#' than the default method. | ||
#' | ||
#' @param x The object to describe | ||
#' @param strict_description Should the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Should the" - then this trails off
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know what to put here. I think I'll merge it - it's the last thing holding it up! - then play with the function; it'll be a test of my understanding it, to be able to figure out what you were going to write here 😆
I think this is 99.9% done and I am really stoked about the function. We could merge even w/o these last details if needed at this point but might as well address here if you're up for it. Thank you for this contribution and for being open to the feedback. There are two comments I have above about documentation that will take <5 minutes to fix. And then the only other item from before is whether the default value of |
In my mind, the decision about default method is your call as it is a choice of what fits best with the package. For the documentation changes, please make them to clarify as you see fits best (I won’t be back to my computer before the planned release day). |
Will do! Enjoy the peacefulness of being computer - free.
…On Thu, Apr 18, 2019, 8:05 PM Bill Denney ***@***.***> wrote:
In my mind, the decision about default method is your call as it is a
choice of what fits best with the package. For the documentation changes,
please make them to clarify as you see fits best (I won’t be back to my
computer before the planned release day).
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#284 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ABZYDEA7OAWJZZS44G7BSNLPREEDJANCNFSM4HFMXBYA>
.
|
swapping it in for rbind, since this is a tidyverse-aligned package and my quick poll shows more peers using dplyr::bind_rows
This rules! 🎉 |
Fix #50