input_merge | R Documentation |
Merge original data frame with scraped data
Internal function. Merges data.frame resulting from web scraping to the data.frame provided as input of a respective function.
input_merge(df = NULL, input = NULL)
df |
Data.frame. A data.frame to be merged to the original input. |
input |
Data.frame. A data.frame provided as original function input. |
df <- data.frame("symbol" = "STOCK", "eps_2016" = 99) input <- data.frame("symbol" = "STOCK", "eps_2016" = 99, "eps_2017" = 199) input_merge(df = df, input = input)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.