Skip to content

Commit 6d3fc01

Browse files
committed
Change badge URLs
Add description of ops for last two
1 parent 07a10d4 commit 6d3fc01

File tree

2 files changed

+21
-30
lines changed

2 files changed

+21
-30
lines changed

README.Rmd

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ knitr::opts_chunk$set(
1212

1313
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
1414
[![Travis-CI Build Status](https://travis-ci.org/coatless/rops.svg?branch=master)](https://travis-ci.org/coatless/rops)
15-
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/rop)](https://cran.r-project.org/package=rops)
15+
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/rops)](https://cran.r-project.org/package=rops)
1616
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/rops)](http://www.r-pkg.org/pkg/rops)
17-
[![Coverage Status](https://img.shields.io/codecov/c/github/coatless/rops/master.svg)](https://codecov.io/github/coatless/rops?branch=master)
17+
[![Coverage Status](https://codecov.io/github/coatless/rops/master.svg)](https://codecov.io/github/coatless/rops?branch=master)
1818

1919
# R Ops (`rops`)
2020

@@ -34,4 +34,6 @@ Presently, the package has support for the following operators:
3434
- [Is Whole Number](https://en.wikipedia.org/wiki/Integer): `is_whole(x)`
3535
- Vectorized boolean operator to assess whether value is an integer.
3636
- Safe Sequence Generation: `from %:% to`, `safe_seq(from, to, by)`
37-
- Not In Set: `%notin%`
37+
- Create sequences that agree with the parity of the incrementer.
38+
- Not In Set: `x %notin% table`
39+
- Check to see if an element does not belong to a set.

README.md

Lines changed: 16 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,25 @@
11

2-
[![Project Status: Active - The project has reached a stable, usable
3-
state and is being actively
4-
developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
5-
[![Travis-CI Build
6-
Status](https://travis-ci.org/coatless/rops.svg?branch=master)](https://travis-ci.org/coatless/rops)
7-
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/rop)](https://cran.r-project.org/package=rops)
8-
[![CRAN RStudio mirror
9-
downloads](http://cranlogs.r-pkg.org/badges/rops)](http://www.r-pkg.org/pkg/rops)
10-
[![Coverage
11-
Status](https://img.shields.io/codecov/c/github/coatless/rops/master.svg)](https://codecov.io/github/coatless/rops?branch=master)
2+
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active) [![Travis-CI Build Status](https://travis-ci.org/coatless/rops.svg?branch=master)](https://travis-ci.org/coatless/rops) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/rops)](https://cran.r-project.org/package=rops) [![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/rops)](http://www.r-pkg.org/pkg/rops) [![Coverage Status](https://codecov.io/github/coatless/rops/master.svg)](https://codecov.io/github/coatless/rops?branch=master)
123

13-
# R Ops (`rops`)
4+
R Ops (`rops`)
5+
==============
146

15-
The objective behind this package is to provide an extension to base *R*
16-
that supplements present operators manipulations.
7+
The objective behind this package is to provide an extension to base *R* that supplements present operators manipulations.
178

189
![Demo of Operators](https://i.imgur.com/IGMeU0J.gif)
1910

20-
# Supported Functionality
11+
Supported Functionality
12+
=======================
2113

2214
Presently, the package has support for the following operators:
2315

24-
- [Null coalescing
25-
operator](https://en.wikipedia.org/wiki/Null_coalescing_operator):
26-
`%??%`
27-
- Operator to allow checking and substitution if a value is null
28-
without `if`/`else` structure
29-
- Missing value (`NA`) coalescing operator: `ifna(x, y)`
30-
- Substitute value when NA is detected.
31-
- [Is Whole Number](https://en.wikipedia.org/wiki/Integer):
32-
`is_whole(x)`
33-
- Vectorized boolean operator to assess whether value is an
34-
integer.
35-
- Safe Sequence Generation: `from %:% to`, `safe_seq(from, to, by)`
36-
- Not In Set: `%notin%`
16+
- [Null coalescing operator](https://en.wikipedia.org/wiki/Null_coalescing_operator): `%??%`
17+
- Operator to allow checking and substitution if a value is null without `if`/`else` structure
18+
- Missing value (`NA`) coalescing operator: `ifna(x, y)`
19+
- Substitute value when NA is detected.
20+
- [Is Whole Number](https://en.wikipedia.org/wiki/Integer): `is_whole(x)`
21+
- Vectorized boolean operator to assess whether value is an integer.
22+
- Safe Sequence Generation: `from %:% to`, `safe_seq(from, to, by)`
23+
- Create sequences that agree with the parity of the incrementer.
24+
- Not In Set: `x %notin% table`
25+
- Check to see if an element does not belong to a set.

0 commit comments

Comments
 (0)