Text Analysis - New Automatic Categorization
Jump to navigation
Jump to search
This page is currently under construction, or it refers to features which are under development and not yet available for use.
This page is under construction. Its contents are only visible to developers!
This page is currently under construction, or it refers to features which are under development and not yet available for use.
This page is under construction. Its contents are only visible to developers!
Background
Usage
Code
var __webpack_modules__ = ({});
// The module cache
var __webpack_module_cache__ = {};
// The require function
function __webpack_require__(moduleId) {
// Check if module is in cache
var cachedModule = __webpack_module_cache__[moduleId];
if (cachedModule !== undefined) {
return cachedModule.exports;
}
// Create a new module (and put it into the cache)
var module = (__webpack_module_cache__[moduleId] = {
exports: {}
});
// Execute the module function
__webpack_modules__[moduleId](module, module.exports, __webpack_require__);
// Return the exports of the module
return module.exports;
}
// webpack/runtime/rspack_version
(() => {
__webpack_require__.rv = () => ("1.7.2")
})();
// webpack/runtime/rspack_unique_id
(() => {
__webpack_require__.ruid = "bundler=rspack@1.7.2";
})();
form.dropBox({ name: 'formText',
label: 'Text variable',
types: ['Variable:Text'],
required: true });
let mr = form.checkBox({ name: 'formMultipleResponse',
label: 'Multiple Response',
prompt: 'If unselected, output categories are mutually exclusive.',
default_value: true });
form.numericUpDown({ name: 'formSeed',
label: 'Seed', default_value: 1223,
prompt: 'Random number seed',
increment: 1, minimum: 0 });
library(flipTextAnalysis)
categorization <- NewAutomaticCategorization(
formText,
is.multiple.response = formMultipleResponse,
seed = formSeed,
detail.level = 1L,
source.language = "en")
See Also
LINK TO ANY PAGES HERE. MAY NEED A BOILERPLATE IN FUTURE.