-
Notifications
You must be signed in to change notification settings - Fork 6
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
JOSS review - Functionality documentation #14
Comments
Updated branch: joss-fixes-0.2.4.9000 (and main) So I should have addressed this issue first. As you identified, there were some gaps in functionality support. These were partly pragmatic and partly due to me not using those functions very much. It was also due to the implementation being achieved by sub-classing Anyway in the light of this comment I decided to implement the missing functions in For documentation of the supported reference I have updated the function reference page to make it more logically organised and providing some detail about the rationale for the scope. This includes an explanation about what other functions are out of scope, and not yet in scope, compared to I updated the vignette and the documentation of |
I don't think there is anything outstanding on this issue so closing for now. Please reopen if needed. |
Review issue: openjournals/joss-reviews#4707
Branch reviewed: release-0.2.4
Problem
It's not immediately clear to me from the documentation which
dplyr
andtidyr
operations are supported bydtrackr
or why some are missing. This can be determined only by comparing the list ofp_*
functions and inspecting the source code comments.I'm not a regular user of
dplyr
, but based on comparison to https://dplyr.tidyverse.org/reference/ see the following operations are not supported bydtrackr
:count
,tally
,glimpse
,group*
,pull
,summarize
,slice*
,bind_cols
,union_all
,nest_join
,rowwise
.Code comments indicate
count / tally - not included as summarisation step, not generally part of a dplyr pipeline
andgroup_map/group_walk -- not included as does not return DF
.The
pivot_wider
andpivot_longer
appear to be the only operations supported fromtidyr
.As a user, it would be helpful to have a quick reference of supported operations and explanations of why certain operations are/are not included. This might also be an opportunity to highlight the relationship between
dplyr::filter
andexclude_all
, since it's not strictly wrapping thedplyr
operation.The text was updated successfully, but these errors were encountered: