Description Usage Arguments Value Examples
View source: R/data_processing.R
This function takes in a data.frame and returns it back with the column called "LOCATION_NAME" cleaned. Cleaned means the country name has been removed and the location name has been put into title case.
1 |
db |
A data.frame of the eartquake database with a column called "LOCATION_NAME" |
An identical data.frame with the exception that the "LOCATION_NAME" is cleaned.
1 2 3 4 5 6 7 | ## Not run:
db <- AC.R.Capstone::NOAA_eq_data
tail(db)
clean_data <- eq_location_clean(db)
tail(clean_data)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.