README.md

Travis build status Coverage status

Intro

The package quakeR is designed for working with the NOAA Significant Earthquakes dataset. The dataset has a substantial amount of information that is not immediately accessible to people without knowledge of the intimate details of the dataset or of R. This package provides the tools for processing and visualizing the data so that others may extract some use out of the information embedded within.

For more info, please read the "Introduction to the quakeR package" vignette.

Installation

devtools::install_github("vadimus202/quakeR", build_vignettes = TRUE)

The Data

This project is centered around a dataset obtained from the U.S. National Oceanographic and Atmospheric Administration (NOAA) on significant earthquakes around the world. This dataset contains information about 5,933 earthquakes over an approximately 4,000 year time span.

The dataset can be downloaded from this link. Alternatively, a copy of the dataset is included with this package, and can be loaded in R with the following code:

filename <- system.file("extdata/earthquakes.tsv.gz", package = "quakeR")
raw_data <- readr::read_delim(filename, delim = "\t")


vadimus202/quakeR documentation built on May 19, 2019, 1:47 a.m.