-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
191 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
^docs$ | ||
^_pkgdown\.yml$ | ||
^pkgdown$ | ||
^README\.Rmd$ | ||
^codecov\.yml$ | ||
visual_test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "", | ||
"short_name": "", | ||
"icons": [ | ||
{ | ||
"src": "/web-app-manifest-192x192.png", | ||
"sizes": "192x192", | ||
"type": "image/png", | ||
"purpose": "maskable" | ||
}, | ||
{ | ||
"src": "/web-app-manifest-512x512.png", | ||
"sizes": "512x512", | ||
"type": "image/png", | ||
"purpose": "maskable" | ||
} | ||
], | ||
"theme_color": "#ffffff", | ||
"background_color": "#ffffff", | ||
"display": "standalone" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,43 @@ | ||
# as.gtable sensibly converts objects | ||
|
||
Can't convert an integer vector to a <gtable>. | ||
Code | ||
as.gtable(g2, widths = unit(c(1, 1), "cm")) | ||
Condition | ||
Warning: | ||
`widths` truncated to length 1. | ||
Output | ||
TableGrob (1 x 1) "layout": 1 grobs | ||
z cells name grob | ||
1 1 (1-1,1-1) layout circle[GRID.circle.9] | ||
|
||
--- | ||
|
||
Arguments in `...` must be used. | ||
x Problematic argument: | ||
* foo = "bar" | ||
i Did you misspell an argument name? | ||
Code | ||
as.gtable(g2, heights = unit(c(1, 1), "cm")) | ||
Condition | ||
Warning: | ||
`heights` truncated to length 1. | ||
Output | ||
TableGrob (1 x 1) "layout": 1 grobs | ||
z cells name grob | ||
1 1 (1-1,1-1) layout circle[GRID.circle.9] | ||
|
||
--- | ||
|
||
Code | ||
as.gtable(1:5) | ||
Condition | ||
Error in `as.gtable()`: | ||
! Can't convert an integer vector to a <gtable>. | ||
|
||
--- | ||
|
||
Code | ||
as.gtable(g1, foo = "bar") | ||
Condition | ||
Error in `as.gtable()`: | ||
! Arguments in `...` must be used. | ||
x Problematic argument: | ||
* foo = "bar" | ||
i Did you misspell an argument name? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Adding multiple grobs | ||
|
||
Code | ||
gtable_add_grob(layout, grobs, c(1:3), 1, 3, 3) | ||
Condition | ||
Error in `gtable_add_grob()`: | ||
! Not all inputs have either length 1 or same length same as `grobs` | ||
|
||
--- | ||
|
||
Code | ||
gtable_add_grob(layout, grobs, tval, 1:2, 3, 3) | ||
Condition | ||
Error in `gtable_add_grob()`: | ||
! Not all inputs have either length 1 or same length same as `grobs` | ||
|
||
--- | ||
|
||
Code | ||
gtable_add_grob(layout, grobs, tval, 1, 3, 3, z = 1:4) | ||
Condition | ||
Error in `gtable_add_grob()`: | ||
! Not all inputs have either length 1 or same length same as `grobs` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# indexing errors are caught | ||
|
||
Code | ||
base[2:1, ] | ||
Condition | ||
Error in `base[2:1, ]`: | ||
! `i` and `j` must be increasing sequences of numbers | ||
|
||
--- | ||
|
||
Code | ||
base[c(2, 2), ] | ||
Condition | ||
Error in `base[c(2, 2), ]`: | ||
! `i` and `j` must be increasing sequences of numbers | ||
|
||
--- | ||
|
||
Code | ||
base[, 2:1] | ||
Condition | ||
Error in `base[, 2:1]`: | ||
! `i` and `j` must be increasing sequences of numbers | ||
|
||
--- | ||
|
||
Code | ||
base[, c(1, 1)] | ||
Condition | ||
Error in `base[, c(1, 1)]`: | ||
! `i` and `j` must be increasing sequences of numbers | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.