This is a feature request for a meeting_classify() (or similarly named) function that classifies meetings in a meeting query based on the keywords that appear in them. Each classification is for ONE binary match, and the API could look something like:
meeting_classify(
mt_data,
category = "Customer",
keywords = c("Customer", "Sales")
)
In this case, you will get a column called Customer and a TRUE or FALSE flag to signify whether that keyword has appeared. This can be wrapped into a wider function that performs multiple classifications in the meeting, and enhance the current meeting_tm_report().
This is a feature request for a
meeting_classify()(or similarly named) function that classifies meetings in a meeting query based on the keywords that appear in them. Each classification is for ONE binary match, and the API could look something like:In this case, you will get a column called
Customerand aTRUEorFALSEflag to signify whether that keyword has appeared. This can be wrapped into a wider function that performs multiple classifications in the meeting, and enhance the currentmeeting_tm_report().