Skip to contents

Creates a bar plot showing the top-20 most frequent titles and their counts.

Usage

visualize_top_20_titles(metadata)

Arguments

metadata

A tibble containing refined Finna metadata, with a "Title" column.

Value

A ggplot2 object showing the bar plot of the top-20 titles.

Examples

library(finna)
sibelius_data <- search_finna("sibelius")
#> Warning: Default limit of 100 records is being used. Specify 'limit' argument for more records.
#> Total results found: 44513
#> Data fetching completed in 0.57 seconds.
refined_data <- refine_metadata(sibelius_data)
visualize_top_20_titles(refined_data)