export(analyze_disaster_sentiment)

export(calculate_sentiment_stats)
export(clean_disaster_text)
export(create_interactive_plots)
export(create_sentiment_map)
export(generate_word_clouds)
export(plot_sentiment_distribution)
export(process_tweet)
export(generate_tweets)

importFrom(dplyr, "%>%", mutate, group_by, summarise, arrange)
importFrom(ggplot2, ggplot, aes, geom_bar, geom_point, theme_minimal)
importFrom(leaflet, leaflet, addTiles, addCircleMarkers)
importFrom(wordcloud, wordcloud)
importFrom(tidytext, unnest_tokens, get_sentiments)
importFrom(plotly, ggplotly, plot_ly)
importFrom(stringr, str_c)
importFrom(graphics, barplot, text, pie)
importFrom(methods, is)
importFrom(stats, cor, runif, aggregate, median, terms)
importFrom(utils, read.csv)

import("methods",
       "tidyverse",
       "leaflet",
       "wordcloud",
       "textdata",
       "tidytext",
       "htmlwidgets",
       "RColorBrewer",
       "dplyr",
       "stringr",
       "scales",
       "DT",
       "quanteda",
       "tidyr"
       )
