slackr_dev function

Send the graphics contents of the current device to a Slack channel

Send the graphics contents of the current device to a Slack channel

slackr_dev sends the graphics contents of the current device to the specified Slack channel.

slackr_dev( channels = Sys.getenv("SLACK_CHANNEL"), token = Sys.getenv("SLACK_TOKEN"), file = "plot", initial_comment = NULL, title = NULL, thread_ts = NULL )

Arguments

  • channels: Comma-separated list of channel names or IDs where the file will be shared.
  • token: Authentication token bearing required scopes.
  • file: prefix for filenames (defaults to plot).
  • initial_comment: The message text introducing the file in specified channels.
  • title: Title of file.
  • thread_ts: Provide another message's ts value to upload this file as a reply. Never use a reply's ts value; use its parent instead.

Returns

httr response object from POST call

Examples

## Not run: slackr_setup() # base library(maps) map("usa") slackr_dev("#results", file = "map") # base barplot(VADeaths) slackr_dev("@jayjacobs") ## End(Not run)

References

https://github.com/mrkaye97/slackr/pull/12/files

See Also

slackr_setup(), slackr_save(), slackr_upload()

Author(s)

Konrad Karczewski (ctb), Bob Rudis (aut)