Products | Versions |
---|---|
Spotfire Statistica | 12.7 |
When uploading a PMML Model to Enterprise via the dialog, you can select 'None' as a data configuration. To do this when using a macro, you can create a new monitor using the command:
Set monitor = ObjectManager.Monitors.Add("Name", swcSVBMonitor, Profile)
How can you do this without referencing a Profile?
In the command Monitors.Add, use 'Empty' for the Profile:
Set monitor = ObjectManager.Monitors.Add("Name", swcSVBMonitor, Empty)