Find IDs of classifiers using https://app.monkeylearn.com/main/explore.
You can use batch to send up to 200 texts to be analyzed within the API
(classification or extraction) with each request.
So for example, if you need to analyze 6000 tweets,
instead of doing 6000 requests to the API, you can use batch to send 30 requests,
each request with 200 tweets.
The function automatically makes these batch calls and waits if there is a throttle limit error,
but you might want to control the process yourself using several calls to the function.
You can check the number of calls you can still make in the API using attr(output, "headers")$x.query.limit.remaining
and attr(output, "headers")$x.query.limit.limit
.