Skip to content
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

Add slice_ functions #68

Merged
merged 27 commits into from
Aug 22, 2023
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
80665ae
slice_head
wvictor14 Aug 19, 2023
9fcea46
slice_tail
wvictor14 Aug 19, 2023
222fef8
use <- instead of = assignment
wvictor14 Aug 19, 2023
bf18ec4
fix example
wvictor14 Aug 19, 2023
d5dd780
slice min
wvictor14 Aug 19, 2023
bd5a53a
tests for slice_head _tail _min
wvictor14 Aug 19, 2023
5640700
slice_max
wvictor14 Aug 19, 2023
bcd55fe
add by example
wvictor14 Aug 19, 2023
582f57d
add .by to slice
wvictor14 Aug 19, 2023
b80fed3
drop exports for slice functions
wvictor14 Aug 19, 2023
1d2ed45
extract minimal number of columns
wvictor14 Aug 19, 2023
d0b8591
approach b - create slice df from scratch
wvictor14 Aug 19, 2023
7489035
Revert "approach b - create slice df from scratch"
wvictor14 Aug 20, 2023
140d4ba
extract only necessary columns slice_
wvictor14 Aug 20, 2023
c181a3c
add a slice test
wvictor14 Aug 20, 2023
02493b1
slice_sample use only necessary metadata variables
wvictor14 Aug 20, 2023
4e679cb
slice_sample docs
wvictor14 Aug 20, 2023
b0f4ef2
replace with native pipe
wvictor14 Aug 20, 2023
0e173ff
remove :: , importFrom tibble::rowid_to_column
wvictor14 Aug 20, 2023
7420193
export slice functions
wvictor14 Aug 21, 2023
7cca3f8
fix slice_min slice_max tibble input
wvictor14 Aug 21, 2023
9e742d1
test for slice_min _max tibble input
wvictor14 Aug 21, 2023
fe67aa5
add return_args to utilities.R
wvictor14 Aug 21, 2023
dab807b
add cran note
wvictor14 Aug 21, 2023
f2b7772
expand abbreviations
wvictor14 Aug 21, 2023
90fd5b5
expand more abbreviations
wvictor14 Aug 22, 2023
468f29f
fix return_arguments_of docs
wvictor14 Aug 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ S3method(sample_n,Seurat)
S3method(select,Seurat)
S3method(separate,Seurat)
S3method(slice,Seurat)
S3method(slice_head,Seurat)
S3method(slice_max,Seurat)
S3method(slice_min,Seurat)
S3method(slice_sample,Seurat)
S3method(slice_tail,Seurat)
S3method(summarise,Seurat)
S3method(tbl_format_header,tidySeurat)
S3method(tidy,Seurat)
Expand Down Expand Up @@ -71,8 +75,6 @@ export(sample_frac)
export(sample_n)
export(select)
export(separate)
export(slice)
export(slice_sample)
export(summarise)
export(tbl_format_header)
export(tidy)
Expand Down Expand Up @@ -108,7 +110,11 @@ importFrom(dplyr,sample_n)
importFrom(dplyr,select)
importFrom(dplyr,select_if)
importFrom(dplyr,slice)
importFrom(dplyr,slice_head)
importFrom(dplyr,slice_max)
importFrom(dplyr,slice_min)
importFrom(dplyr,slice_sample)
importFrom(dplyr,slice_tail)
importFrom(dplyr,summarise)
importFrom(dplyr,vars)
importFrom(ellipsis,check_dots_used)
Expand Down
Loading