View source: R/make_intervals.R
make_intervals | R Documentation |
Create Interval elements, most likely to add to a DataDictionary element.
make_intervals( closure = NULL, leftMargin = NULL, rightMargin = NULL, namespace = "4_4" )
closure |
The 'closure' attribute of each 'Interval' element to be created in order. |
leftMargin |
The 'leftMargin' attribute of each 'Interval' element to be created in order. |
rightMargin |
The 'rightMargin' attribute of each 'Interval' element to be created in order. |
namespace |
The namespace of the PMML model |
The 'Interval' element allows 3 attributes, all of which may be defined in the 'make_intervals' function. The value of these attributes should be provided as a list. Thus the elements of the 'leftMargin' for example define the value of that attribute for each 'Interval' element in order.
PMML Intervals elements.
Tridivesh Jena
make_values
to make Values child elements, add_data_field_children
to add these xml fragments to the DataDictionary PMML element.
# make 3 Interval elements # we define the 3 Intervals as ,1] (1,2) and [2, mi <- make_intervals( list("openClosed", "openOpen", "closedOpen"), list(NULL, 1, 2), list(1, 2, NULL) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.