ipaddress provides data classes and functions for working with IP addresses and networks. Its interface is inspired by the Python ipaddress module.
Here are some key features:
For data visualization of IP addresses and networks, check out the ggip package.
Install the released version from CRAN with:
install.packages("ipaddress")
Install the development version from GitHub with:
# install.packages("remotes")
::install_github("davidchall/ipaddress") remotes
Use ip_address()
and ip_network()
to create
standalone vectors or data frame columns.
library(tibble)
library(ipaddress)
<- ip_address(c("192.168.0.1", "2001:db8::8a2e:370:7334"))
address <- ip_network(c("192.168.100.0/22", "2001:db8::/80"))
network
tibble(address, network)
#> # A tibble: 2 × 2
#> address network
#> <ip_addr> <ip_netwk>
#> 1 192.168.0.1 192.168.100.0/22
#> 2 2001:db8::8a2e:370:7334 2001:db8::/80
It looks like we’ve simply stored the character vector, but we’ve
actually validated each input and stored its native bit representation.
When the vector is displayed, the print()
method formats
each value back to the human-readable character representation. There
are two main advantages to storing IP data in their native bit
representation:
Read vignette("ip-data")
to learn more about these
vector classes. For a demonstration of common recipes using ipaddress
vectors and functions, see vignette("recipes")
.
Please note that the ipaddress project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.