Nothing
#' Get word count frequencies for a list of URNs or dhlabids
#'
#' This function takes a list of National Library of Norway (NB) identifiers,
#' either URNs or dhlabids, and returns the word count for each object.
#' It queries the National Library's API to fetch the word count data.
#'
#' @param urns A list or data frame of URNs from the National Library of Norway.
#' If a data frame, it should have a column named 'urn'.
#' @param dhlabids A list of 'dhlabid' ids from National Library DHLAB.
#'
#' @return A data frame with two columns: 'dhlabid' and 'frequencies'.
#' Each row represents a library text resource with its corresponding word count.
#'
#' @examples
#' # Example usage with a list of URNs
#' urn_list <- c("URN:NBN:no-nb_digibok_2008051404065", "URN:NBN:no-nb_digibok_2010092120011")
#' word_counts <- get_urn_frequencies(urn_list)
#' print(word_counts)
#'
#' # Example usage with a data frame of URNs
#' urn_list <- c("URN:NBN:no-nb_digibok_2008051404065", "URN:NBN:no-nb_digibok_2010092120011")
#' urn_dataframe <- data.frame(urn = urn_list)
#' word_counts <- get_urn_frequencies(urn_dataframe)
#'
#' @import httr
#' @export
get_urn_frequencies <- function(urns = NULL, dhlabids = NULL){
if (is.data.frame(urns)) {
urns <- unname(urns$urn)
} else {
urns <- unname(urns)
}
url <- "https://api.nb.no/dhlab/urn_frequencies"
# params <- list("urns" = urns)
params <- list("dhlabid" = dhlabids, "urns" = urns)
#query <- POST(url, body = params, encode = "json")
query <- api_call_wrapper(url, body = params, encode = "json")
if (is.null(query)) {
return(NULL)
}
result <- as.data.frame(do.call(rbind, content(query)))
colnames(result) <- c("dhlabid", "tokens")
return(result)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.