Find Most Representative Setlists
Source:R/tourSetlistAlignment.R
find_most_representative_setlists.Rd
This function identifies a specified number of shows that have the highest average similarity to other shows' setlists, effectively finding the most representative setlists in the dataset.
Value
A data frame containing the most representative setlists, with the same structure as the input data frame.
Examples
if (FALSE) { # \dontrun{
# Assuming show_sequences_all is your dataset
representative_shows <- find_most_representative_setlists(show_sequences_all, n_representatives = 30)
print(representative_shows)
} # }