Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request: meeting_classify() by subject line #93

Closed
martinctc opened this issue Mar 4, 2021 · 1 comment · Fixed by #173
Closed

Feature request: meeting_classify() by subject line #93

martinctc opened this issue Mar 4, 2021 · 1 comment · Fixed by #173
Labels
enhancement New feature or request

Comments

@martinctc
Copy link
Member

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().

@martinctc martinctc added the enhancement New feature or request label Mar 4, 2021
@moralec
Copy link
Contributor

moralec commented Mar 4, 2021

Some things to keep in mind:

  1. We already do this within subject_validate (lines 166-170). Once we implement this we can re-code that function so it uses this general function.
  2. In the past we have used some common meeting terms for a general clasification. Probably best no to hard code these but we can use it as the basis of a blog article.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants