#GitHub Repository Issue Labels
*bug *duplicate *enhancement *help wanted *invalid *question *wont fix
| snippet header | |
| ## --------------------------- | |
| ## | |
| ## File name: | |
| ## | |
| ## Description: | |
| ## | |
| ## Version: 0.0.1 | |
| ## | |
| ## Author: Nick Hepler |
#GitHub Repository Issue Labels
*bug *duplicate *enhancement *help wanted *invalid *question *wont fix
Bureau of Justice Statistics (BJS)
Statistics about Crime and victims, Drugs and crime, Criminal offenders, The justice system in the United States, Law enforcement, Prosecution, Courts and sentencing, Corrections, Justice expenditure and employment.
Amazon Web Services (AWS) Public Data Sets*
Public Datasets on AWS provides a centralized repository of public datasets that can be seamlessly integrated into AWS cloud-based applications. AWS is hosting the public datasets at no charge for the community, and like all AWS services, users pay only for the compute and storage they use for their own applications.
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| --- | |
| title: "Codebook template" | |
| author: "Your name here" | |
| date: "The date here" | |
| output: | |
| html_document: | |
| keep_md: yes | |
| --- | |
| ## Project Description |
| ggplot(data = <DATA>) + | |
| <GEOM_FUNCTION>(mapping = aes(<MAPPINGS>)) |
| pkgs <- c( | |
| "dplyr", "gapminder", "ggplot2", "jsonlite", "Lahman", | |
| "lubridate", "modelr", "nycflights13", "purrr", "readr", | |
| "stringr", "tibble", "tidyr" | |
| ) | |
| install.packages(pkgs) |
str(x) # Compactly display the internal structure of an R object.
class(x) # Return the object class.
dim(x) # Retrieve or set the dimension of an object.
nrow(x) # Return the number of rows (observations).
ncol(x) # Return the number of columns (variables).
object.size(x) # Provides an estimate memory used to store an R object.
names(x) # Get or set the names of an object.
head(x) # Returns the first part of a vector, matrix, table, data frame or function.
| % <one line to give the program's name and a brief idea of what it does.> | |
| % | |
| % Copyright (C) <year> <name of author> | |
| % | |
| % Version <x.y.z> | |
| % | |
| % This program is free software; you can redistribute it and/or modify | |
| % it under the terms of the GNU General Public License as published by | |
| % the Free Software Foundation; either version 2 of the License, or | |
| % (at your option) any later version. |