Nothing
detStructAddVarLabels <- function(determinantStructure,
varLabelDf,
varNameCol = 'varNames.cln',
leftAnchorCol = 'leftAnchors',
rightAnchorCol = 'rightAnchors',
subQuestionCol = 'subQuestions',
questionTextCol = 'questionText') {
determinantStructure$Do(function(currentNode) {
currentNode$leftAnchors <- varLabelDf[varLabelDf[, varNameCol] %in%
unlist(currentNode$varNames),
leftAnchorCol];
currentNode$rightAnchors <- varLabelDf[varLabelDf[, varNameCol] %in%
unlist(currentNode$varNames),
rightAnchorCol];
currentNode$subQuestions <- varLabelDf[varLabelDf[, varNameCol] %in%
unlist(currentNode$varNames),
subQuestionCol];
currentNode$questionTexts <- varLabelDf[varLabelDf[, varNameCol] %in%
unlist(currentNode$varNames),
questionTextCol];
}, traversal = 'level', filterFun = function(x) return(!is.null(x$varNames)));
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.