View source: R/import_month_data.R
import_month_data | R Documentation |
This function takes in numeric year/month values and imports data for the specified time
import_month_data(year, month)
year |
numeric value of year |
month |
numeric value of month |
A spec_tbl_df object
# Pull Jan., 2015 data from web library(dplyr) jan_2015 <- import_month_data(2015, 1) # Pull first quarter of 2015 data from web spring2015 <- c(1, 2, 3) quarter_1_2015 <- lapply(spring2015, import_month_data, year = 2015) quarter_1_2015 <- bind_rows(quarter_1_2015)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.