Collect.web {vosonSML} | R Documentation |
Collect hyperlinks from web pages
Description
Collects hyperlinks from web pages and structures the data into a dataframe with the class names
"datasource"
and "web"
.
Usage
## S3 method for class 'web'
Collect(credential, pages = NULL, writeToFile = FALSE, verbose = FALSE, ...)
collect_web_hyperlinks(pages = NULL, writeToFile = FALSE, verbose = FALSE, ...)
Arguments
credential |
A |
pages |
Dataframe. Dataframe of web pages to crawl. The dataframe must have the columns |
writeToFile |
Logical. Write collected data to file. Default is |
verbose |
Logical. Output additional information. Default is |
... |
Additional parameters passed to function. Not used in this method. |
Value
A tibble
object with class names "datasource"
and "web"
.
Examples
## Not run:
pages <- tibble::tibble(page = c("http://vosonlab.net",
"https://rsss.cass.anu.edu.au"),
type = c("int", "all"),
max_depth = c(2, 2))
webData <- webAuth |>
Collect(pages, writeToFile = TRUE)
## End(Not run)