-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updates to support a workflow via shiny
- Loading branch information
1 parent
bd5ce07
commit 1b197c3
Showing
4 changed files
with
68 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
\name{get_acs_column_names} | ||
\alias{get_acs_column_names} | ||
\title{Returns the column names of an ACS table.} | ||
\usage{ | ||
get_acs_column_names(tableId, lod, endyear = 2012, span = 5) | ||
} | ||
\arguments{ | ||
\item{tableId}{The id of an ACS table.} | ||
|
||
\item{lod}{The level of geographic detail for the | ||
data.frame. Must be one of "state", "county" or "zip".} | ||
|
||
\item{endyear}{The end year of the survey. Defaults to | ||
2012.} | ||
|
||
\item{span}{The span of the survey. Defaults to 5.} | ||
} | ||
\value{ | ||
A vector of column names | ||
} | ||
\description{ | ||
Returns the column names of an ACS table. | ||
} | ||
\seealso{ | ||
http://factfinder2.census.gov/faces/help/jsf/pages/metadata.xhtml?lang=en&type=survey&id=survey.en.ACS_ACS, | ||
which lists all ACS Surveys. | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters