-
Notifications
You must be signed in to change notification settings - Fork 71
Drop {tibble} as a hard dependency
#1013
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
Changes from all commits
79c649e
b8bf3a2
c275792
1e2c3ff
507ff8e
731cb1a
b5966b2
875c2b9
9f845aa
9e9c691
0d11b34
7d54201
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,4 @@ | ||
| #' @keywords api | ||
| #' @importFrom tibble tribble | ||
| #' @importFrom magrittr %>% | ||
| NULL | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,7 @@ cli | |
| CMD | ||
| codecov | ||
| coercible | ||
| coercions | ||
| compat | ||
| config | ||
| CONST | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| tibble::tribble( | ||
| tribble( | ||
| ~x, ~y, ~z, | ||
| "one", TRUE, 1L, | ||
| "two", FALSE, 2L | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| tibble::tribble( | ||
| tribble( | ||
| ~x, ~y, ~z, | ||
| "one", TRUE, 1L, | ||
| "two", FALSE, 2L | ||
|
|
||
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.
Another option would be
as.data.frame(matrix(ncol = 3, byrow = TRUE, c(...)))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.
Thanks for the suggestion. But I think I will just retain it like this for now.