File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 1
- Version: 0.4.0
2
- Date: 2023-03-24 15:03:54 UTC
3
- SHA: 01147162f3adb2a9815e9967a18db7a9056aec24
1
+ Version: 0.4.4
2
+ Date: 2023-09-04 11:52:14 UTC
3
+ SHA: 84e3f953625e8b94f665bd82b7d680188ccd0e7b
Original file line number Diff line number Diff line change 1
1
Package: dtrackr
2
2
Title: Track your Data Pipelines
3
- Version: 0.4.4
3
+ Version: 0.4.4.9001
4
4
Authors@R:
5
5
person(given = "Robert",
6
6
family = "Challen",
Original file line number Diff line number Diff line change
1
+ # TODO:
2
+ # Configure a countable items named list of expressions
3
+ # or maybe better a formula like the exclusion spec
4
+ # Use a n_distinct call to generate a set of additional .count type columns
5
+ # maybe this is able to use status.
6
+
7
+ # iris %>% dplyr::group_by(Species) %>% summarise(n = n_distinct(Petal.Length+Sepal.Length))
8
+ # iris %>% dplyr::group_by(Species) %>% dplyr::summarise(n = dplyr::n_distinct(Petal.Length+Sepal.Length))
9
+ # iris %>% dplyr::group_by(Species) %>% dplyr::summarise(n = dplyr::n_distinct(Petal.Length+Sepal.Length, Sepal.Width+Petal.Width))
10
+ # x = function(...) {dots = rlang::enexprs(...); browser()}
11
+ # x(a = c(Petal.Length+Sepal.Length, Sepal.Wdith), b= c(asdasda) )
12
+ # class(dots$a)
13
+ # as.expression(dots$a)
14
+ # as.expression(unlist(dots$a))
15
+ # x(a = c(Petal.Length+Sepal.Length, Sepal.Wdith), b= c(asdasda) )
16
+ # x(a = c(Petal.Length+Sepal.Length, Sepal.Width), b= c(asdasda) )
17
+ # iris %>% dplyr::summarise(n = !!dots$a)
18
+ # iris %>% dplyr::summarise(n = dplyr::n_distinct(!!dots$a))
19
+ # iris %>% dplyr::summarise(n = dplyr::n_distinct(!!dots$b))
20
+ # iris %>% dplyr::summarise(n = dplyr::n_distinct(Petal.Length + Sepal.Length, Sepal.Width))
21
+ # iris %>% dplyr::summarise(n = dplyr::n_distinct(c(Petal.Length + Sepal.Length, Sepal.Width)))
You can’t perform that action at this time.
0 commit comments