View source: R/tw_get_wikipedia_category_members.R
tw_get_cached_wikipedia_category_members | R Documentation |
Mostly used internally.
tw_get_cached_wikipedia_category_members(
category,
type = "page",
language = tidywikidatar::tw_get_language(),
cache = NULL,
cache_connection = NULL,
disconnect_db = TRUE
)
category |
Title of a Wikipedia category page or final parts of its url. Must include "Category:", or equivalent in other languages. If given, url can be left empty, but language must be provided. |
type |
Defaults to "page", defines which kind of members of a category are returned. Valid values include "page", "file", and "subcat" (for sub-category). Corresponds to |
language |
Two-letter language code used to define the Wikipedia version to use. Defaults to language set with |
cache |
Defaults to NULL. If given, it should be given either TRUE or FALSE. Typically set with |
cache_connection |
Defaults to NULL. If NULL, and caching is enabled, |
disconnect_db |
Defaults to TRUE. If FALSE, leaves the connection to cache open. |
If data present in cache, returns a data frame with cached data.
if (interactive()) {
tw_set_cache_folder(path = tempdir())
tw_enable_cache()
tw_create_cache_folder(ask = FALSE)
df_from_api <- tw_get_wikipedia_page_qid(category = "Margaret Mead", language = "en")
df_from_cache <- tw_get_cached_wikipedia_category_members(
category = "Margaret Mead",
language = "en"
)
df_from_cache
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.