Skip to content

Commit

Permalink
update text formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sjfox committed Oct 25, 2017
1 parent 9bc0e94 commit aa78e08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/themes.R
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ theme_nothing <- function(base_size = 14, base_family = ""){
#' @return The theme.
#' @examples
#' usa_data = map_data("usa")
#' ggplot(usa_data, aes(long,lat,group=region)) + geom_polygon() + theme_map()
#' ggplot(usa_data, aes(long,lat, fill = region)) + geom_polygon() + theme_map()
#' ggplot(usa_data, aes(long,lat, fill = region)) + facet_wrap(~region, scales = "free") + geom_polygon() + theme_map()
#' ggplot(usa_data, aes(long, lat, group=region)) + geom_polygon() + theme_map()
#' ggplot(usa_data, aes(long, lat, fill = region)) + geom_polygon() + theme_map()
#' ggplot(usa_data, aes(long, lat, fill = region)) + facet_wrap(~region, scales = "free") + geom_polygon() + theme_map()
#' @export
theme_map <- function(base_size = 14, base_family = ""){
# work based off of theme_void
Expand Down

0 comments on commit aa78e08

Please sign in to comment.