├── .Rbuildignore ├── .gitignore ├── ChatStat.Rproj ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── client.R ├── plots.R ├── rooms.R └── utils.R ├── README.Rmd ├── README.md ├── inst └── rmd │ ├── html_report.Rmd │ └── style.css └── man ├── all_rooms.Rd ├── figures └── screenshot.png ├── get_members.Rd ├── get_messages.Rd ├── get_rooms.Rd ├── plot_active_times.Rd ├── plot_daily_activity.Rd ├── plot_time_of_day_activity.Rd ├── plot_user_network.Rd ├── print.ChatStat_rooms.Rd ├── render_report.Rd ├── rooms.Rd ├── sync.Rd └── update_rooms.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/.gitignore -------------------------------------------------------------------------------- /ChatStat.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/ChatStat.Rproj -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: ChatStat authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/client.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/R/client.R -------------------------------------------------------------------------------- /R/plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/R/plots.R -------------------------------------------------------------------------------- /R/rooms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/R/rooms.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/README.md -------------------------------------------------------------------------------- /inst/rmd/html_report.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/inst/rmd/html_report.Rmd -------------------------------------------------------------------------------- /inst/rmd/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/inst/rmd/style.css -------------------------------------------------------------------------------- /man/all_rooms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/all_rooms.Rd -------------------------------------------------------------------------------- /man/figures/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/figures/screenshot.png -------------------------------------------------------------------------------- /man/get_members.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/get_members.Rd -------------------------------------------------------------------------------- /man/get_messages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/get_messages.Rd -------------------------------------------------------------------------------- /man/get_rooms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/get_rooms.Rd -------------------------------------------------------------------------------- /man/plot_active_times.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/plot_active_times.Rd -------------------------------------------------------------------------------- /man/plot_daily_activity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/plot_daily_activity.Rd -------------------------------------------------------------------------------- /man/plot_time_of_day_activity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/plot_time_of_day_activity.Rd -------------------------------------------------------------------------------- /man/plot_user_network.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/plot_user_network.Rd -------------------------------------------------------------------------------- /man/print.ChatStat_rooms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/print.ChatStat_rooms.Rd -------------------------------------------------------------------------------- /man/render_report.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/render_report.Rd -------------------------------------------------------------------------------- /man/rooms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/rooms.Rd -------------------------------------------------------------------------------- /man/sync.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/sync.Rd -------------------------------------------------------------------------------- /man/update_rooms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregSutcliffe/ChatStat/HEAD/man/update_rooms.Rd --------------------------------------------------------------------------------