Skip to content

Commit

Permalink
Adjust redirected urls
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchall committed Aug 25, 2020
1 parent 88ce4ba commit 25346c4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ knitr::opts_chunk$set(
)
```

# ipaddress <a href='https://davidchall.github.io/ipaddress'><img src='man/figures/logo.png' align="right" height="139" /></a>
# ipaddress <a href='https://davidchall.github.io/ipaddress/'><img src='man/figures/logo.png' align="right" height="139" /></a>

<!-- badges: start -->
[![Lifecycle: maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing)
Expand Down Expand Up @@ -87,7 +87,7 @@ tibble(network = ip_network(c("192.168.100.0/22", "2001:db8::/80"))) %>%
## Related work

* [**iptools**](https://hrbrmstr.github.io/iptools/) -- A well established R package for working with IP addresses and networks. Unfortunately IPv6 support is severely limited. Also, addresses and networks are stored as character vectors, so they must be parsed to their native bit representation for every operation. It served as an excellent guide and motivation for ipaddress.
* [**cyberpandas**](https://cyberpandas.readthedocs.io) -- A Python package for using IP addresses in a [pandas](https://pandas.pydata.org) DataFrame. This offers full support for IPv6 and stores addresses in the native bit representation. However, most "interesting" operations must deserialize each address to a Python [ipaddress](https://docs.python.org/library/ipaddress.html) object, which is slow. It also doesn't support IP networks.
* [**cyberpandas**](https://cyberpandas.readthedocs.io) -- A Python package for using IP addresses in a [pandas](https://pandas.pydata.org) DataFrame. This offers full support for IPv6 and stores addresses in the native bit representation. However, most "interesting" operations must deserialize each address to a Python [ipaddress](https://docs.python.org/3/library/ipaddress.html) object, which is slow. It also doesn't support IP networks.

---

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

# ipaddress <a href='https://davidchall.github.io/ipaddress'><img src='man/figures/logo.png' align="right" height="139" /></a>
# ipaddress <a href='https://davidchall.github.io/ipaddress/'><img src='man/figures/logo.png' align="right" height="139" /></a>

<!-- badges: start -->

Expand Down Expand Up @@ -106,8 +106,8 @@ tibble(network = ip_network(c("192.168.100.0/22", "2001:db8::/80"))) %>%
support for IPv6 and stores addresses in the native bit
representation. However, most “interesting” operations must
deserialize each address to a Python
[ipaddress](https://docs.python.org/library/ipaddress.html) object,
which is slow. It also doesn’t support IP networks.
[ipaddress](https://docs.python.org/3/library/ipaddress.html)
object, which is slow. It also doesn’t support IP networks.

-----

Expand Down
7 changes: 7 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Resubmission

This is a resubmission. In this version I have:

* Adjusted README URLs that were being redirected.


## Test environments
* macOS 10.15 (local), R 4.0.2
* macOS 10.15 (GitHub Actions), R 4.0.2
Expand Down

0 comments on commit 25346c4

Please sign in to comment.