Creates a faceted horizontal bar plot showing weighted log odds for comparing word usage across categories using the Fightin' Words method (Monroe et al. 2008). Each group is displayed in a separate facet showing its most distinctive terms.
Usage
plot_weighted_log_odds(
weighted_data,
top_n = 10,
color_positive = "#10B981",
color_negative = "#EF4444",
height = 600,
width = NULL,
title = "Weighted Log Odds by Group"
)Arguments
- weighted_data
Data frame from calculate_weighted_log_odds()
- top_n
Number of top terms to show per group (default: 10)
- color_positive
Color for positive log odds (default: "#10B981" green)
- color_negative
Color for negative log odds (default: "#EF4444" red)
- height
Plot height in pixels (default: 600)
- width
Plot width in pixels (default: NULL for auto)
- title
Plot title (default: "Weighted Log Odds by Group")
See also
Other visualization:
apply_standard_plotly_layout(),
create_empty_plot_message(),
create_message_table(),
create_standard_ggplot_theme(),
get_dt_options(),
get_plotly_hover_config(),
get_sentiment_color(),
get_sentiment_colors(),
plot_cluster_terms(),
plot_cross_category_heatmap(),
plot_entity_frequencies(),
plot_lexical_dispersion(),
plot_log_odds_ratio(),
plot_mwe_frequency(),
plot_ngram_frequency(),
plot_pos_frequencies(),
plot_semantic_viz(),
plot_similarity_heatmap(),
plot_term_trends_continuous(),
plot_word_frequency()
Examples
if (FALSE) { # \dontrun{
weighted_odds <- calculate_weighted_log_odds(dfm, "party", top_n = 15)
plot_weighted_log_odds(weighted_odds)
} # }
