Returns a standardized ggplot2 theme matching TextAnalysisR design standards.
See also
Other visualization:
apply_standard_plotly_layout(),
create_empty_plot_message(),
create_message_table(),
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_weighted_log_odds(),
plot_word_frequency()
Examples
if (FALSE) { # \dontrun{
library(ggplot2)
data(SpecialEduTech, package = "TextAnalysisR")
# Create a simple plot using text lengths
df <- data.frame(
title_length = nchar(SpecialEduTech$title),
abstract_length = nchar(SpecialEduTech$abstract)
)
ggplot(df, aes(title_length, abstract_length)) +
geom_point() +
create_standard_ggplot_theme()
} # }
