powered by
These set sensible defaults for plots generated by ggip. Use ggplot2::theme() if you want to tweak the results.
ggplot2::theme()
theme_ip_light(base_size = 11, base_family = "")theme_ip_dark( background_color = "black", text_color = "white", base_size = 11, base_family = "" )
theme_ip_dark( background_color = "black", text_color = "white", base_size = 11, base_family = "" )
base font size, given in pts.
base font family
Background color
Text color
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()
Run the code above in your browser using DataLab