These set sensible defaults for plots generated by ggip.
Use ggplot2::theme()
if you want to tweak the results.
Usage
theme_ip_light(base_size = 11, base_family = "")
theme_ip_dark(
background_color = "black",
text_color = "white",
base_size = 11,
base_family = ""
)
Arguments
- base_size
base font size, given in pts.
- base_family
base font family
- background_color
Background color
- text_color
Text color
Examples
p <- ggplot(data.frame(ip = ip_address("128.0.0.0"))) +
geom_point(aes(x = ip$x, y = ip$y), color = "grey") +
coord_ip()
p + theme_ip_light()
p + theme_ip_dark()