url_build | R Documentation |
Builds a URL string from its components.
url_build(url_components)
url_components |
A list containing the components of the URL: scheme, host, port, path, query, and fragment.
|
A URL string constructed from the provided components
library(urlparse)
url_build(list(
scheme = "https",
user = "",
password = "",
host = "host.com",
port = 8000,
path = "/path",
query = "query",
fragment = "fragment"
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.