Skip to contents

A minimal shiny app that demonstrates the functioning of related modules

Usage

cass_show_ts_dygraph_app(count_df)

Arguments

count_df

A dataframe with three columns (date, word, and n), typically created with cas_count() and possibly processed with cas_summarise().

Value

A shiny app

Examples


count_df <- cas_count(
  corpus = cas_demo_corpus,
  pattern = c("russia", "moscow")
) |> 
  cas_summarise(before = 15, after = 15)

# cass_show_ts_dygraph_app(count_df)