get_packages | R Documentation |
Get a data frame of package dependencies used by all content items on the server.
get_packages(src, name = NULL, page_size = 100000, limit = Inf)
src |
A |
name |
Optional package name to filter by. Python package are normalized during matching; R package names must match exactly. |
page_size |
Optional. Integer specifying page size for API paging. |
limit |
Optional. Specify the maximum number of records after which to cease paging. |
A data frame with the following columns:
language
: Language ecosystem the package belongs to (r
or python
)
language_version
: Version of R or Python used by the content
name
: Package name
version
: Package version
hash
: Package description hash for R packages
bundle_id
: Identifier for the bundle that depends on this package
content_id
: Numeric identifier for the content that depends on this
package
content_guid
: The unique identifier of the content item that depends on
this package
Other packages functions:
get_content_packages()
## Not run:
client <- connect()
packages <- get_packages(client)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.