You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Bob Rudis ba70f98c94
Updated figure
10 years ago
R Updated figure 10 years ago
_README_files/figure-markdown_github text size 10 years ago
data initial commit 10 years ago
man initial commit 10 years ago
tests initial commit 10 years ago
.Rbuildignore initial commit 10 years ago
.gitignore initial commit 10 years ago
.travis.yml initial commit 10 years ago
DESCRIPTION initial commit 10 years ago
LICENSE initial commit 10 years ago
NAMESPACE initial commit 10 years ago
README.md Updated figure 10 years ago
_README.Rmd initial commit 10 years ago
statebins.Rproj initial commit 10 years ago

README.md

statesquares is ...

The following functions are implemented:

  • statebins -

News

  • Version 1.0.0 released

Installation

devtools::install_github("hrbrmstr/statebins")

Usage

library(statebins)
## Loading required package: ggplot2
## Loading required package: grid
## Loading required package: scales
## Loading required package: gridExtra
# current verison
packageVersion("statebins")
## [1] '1.0'
dat <- read.csv("http://www.washingtonpost.com/wp-srv/special/business/states-most-threatened-by-trade/states.csv?cache=1", stringsAsFactors=FALSE)

gg <- statebins(dat, "state", "avgshare94_00", breaks=4, 
                labels=c("0-1", "1-2", "2-3", "3-4"),
                legend_title="State Groups",
                brewer_pal="Blues", text_color="black", 
                plot_title="1994-2000", title_position="bottom")

gg

plot of chunk unnamed-chunk-3

gg2 <- statebins_continuous(dat, "state", "avgshare01_07",
                legend_title="States", legend_position="none",
                brewer_pal="OrRd", text_color="black", 
                plot_title="1994-2000", title_position="bottom")

gg2

plot of chunk unnamed-chunk-3

Test Results

library(statebins)
library(testthat)

date()
## [1] "Mon Aug 25 22:25:49 2014"
test_dir("tests/")
## basic functionality :