14
14
[ ![ Monthly Downloads] ( https://cranlogs.r-pkg.org/badges/pointblank )] ( https://CRAN.R-project.org/package=pointblank )
15
15
[ ![ Total Downloads] ( https://cranlogs.r-pkg.org/badges/grand-total/pointblank )] ( https://CRAN.R-project.org/package=pointblank )
16
16
[ ![ Posit Cloud] ( https://img.shields.io/badge/Posit%20Cloud-pointblank%20Test%20Drive-blue?style=social&logo=rstudio&logoColor=75AADB )] ( https://rstudio.cloud/project/3411822 )
17
+ [ ![ Discord] ( https://img.shields.io/discord/1345877328982446110?color=%237289da&label=Discord )] ( https://discord.com/invite/YH7CybCNCQ )
17
18
[ ![ Contributor Covenant] ( https://img.shields.io/badge/Contributor%20Covenant-v2.1%20adopted-ff69b4.svg )] ( https://www.contributor-covenant.org/version/2/1/code_of_conduct.html )
18
19
<!-- badges: end -->
19
20
@@ -78,14 +79,16 @@ agent <-
78
79
actions = al
79
80
) %> %
80
81
col_vals_between(
81
- vars(a ), 1 , 9 ,
82
+ columns = a ,
83
+ left = 1 ,
84
+ right = 9 ,
82
85
na_pass = TRUE
83
86
) %> %
84
87
col_vals_lt(
85
- vars( c ) , 12 ,
88
+ columns = c , 12 ,
86
89
preconditions = ~ . %> % dplyr :: mutate(c = a + b )
87
90
) %> %
88
- col_is_numeric(vars (a , b )) %> %
91
+ col_is_numeric(columns = c (a , b )) %> %
89
92
interrogate()
90
93
```
91
94
@@ -139,14 +142,17 @@ dplyr::tibble(
139
142
b = c(6 , 1 , 0 , 6 , 0 , 7 )
140
143
) %> %
141
144
col_vals_between(
142
- a , 1 , 9 ,
145
+ columns = a ,
146
+ left = 1 ,
147
+ right = 9 ,
143
148
na_pass = TRUE
144
149
) %> %
145
150
col_vals_lt(
146
- c , 12 ,
151
+ columns = c ,
152
+ value = 12 ,
147
153
preconditions = ~ . %> % dplyr :: mutate(c = a + b )
148
154
) %> %
149
- col_is_numeric(c(a , b ))
155
+ col_is_numeric(columns = c(a , b ))
150
156
```
151
157
152
158
Error: Exceedance of failed test units where values in `c` should have been < `12`.
@@ -167,17 +173,20 @@ dplyr::tibble(
167
173
b = c(6 , 1 , 0 , 6 , 0 , 7 )
168
174
) %> %
169
175
col_vals_between(
170
- a , 1 , 9 ,
176
+ columns = a ,
177
+ left = 1 ,
178
+ right = 9 ,
171
179
na_pass = TRUE ,
172
180
actions = warn_on_fail()
173
181
) %> %
174
182
col_vals_lt(
175
- c , 12 ,
183
+ columns = c ,
184
+ value = 12 ,
176
185
preconditions = ~ . %> % dplyr :: mutate(c = a + b ),
177
186
actions = warn_on_fail()
178
187
) %> %
179
188
col_is_numeric(
180
- c(a , b ),
189
+ columns = c(a , b ),
181
190
actions = warn_on_fail()
182
191
)
183
192
```
@@ -340,13 +349,6 @@ a *Test Drive* in the [Posit Cloud project](https://rstudio.cloud/project/341182
340
349
341
350
<hr >
342
351
343
- ## DISCUSSIONS
344
-
345
- Let's talk about data validation and data documentation in
346
- [ ** pointblank** Discussions] ( https://github.com/rstudio/pointblank/discussions ) !
347
- It's a great place to ask questions about how to use the package, discuss
348
- some ideas, engage with others, and much more!
349
-
350
352
## INSTALLATION
351
353
352
354
Want to try this out? The ** pointblank** package is available on ** CRAN** :
@@ -362,10 +364,18 @@ You can also install the development version of **pointblank** from **GitHub**:
362
364
pak :: pak(" rstudio/pointblank" )
363
365
```
364
366
367
+ ## Getting in Touch
368
+
365
369
If you encounter a bug, have usage questions, or want to share ideas to
366
370
make this package better, feel free to file an
367
371
[ issue] ( https://github.com/rstudio/pointblank/issues ) .
368
372
373
+ Wanna talk about data validation in a more relaxed setting? Join our
374
+ [ _ Discord server_ ] ( https://discord.com/invite/YH7CybCNCQ ) ! This is a great option for asking about
375
+ the development of Pointblank, pitching ideas that may become features, and just sharing your ideas!
376
+
377
+ [ ![ Discord Server] ( https://img.shields.io/badge/Discord-Chat%20with%20us-blue?style=social&logo=discord&logoColor=purple )] ( https://discord.com/invite/YH7CybCNCQ )
378
+
369
379
-----
370
380
371
381
## Code of Conduct
0 commit comments