Which of the following binning functions can be used on a numeric type column?
BinByEvenDistribution() is a binning function that creates a binned column where each bin has the same number of unique values as the others. The last bin may have more unique values than the others. The first argument is the column to bin and the second argument is the number of bins. This function can be used on a numeric type column to group the values into equal frequency bins. The other binning functions are either not valid (BinByTimeSpan(), BinByNumbers()) or not applicable to a numeric type column (BinByDateTime(), BinBySubstring()).Reference:Binning Functions,How to Use Binning
What are the three types of input parameters used in the scripts?
Choose 3 answers
Input parameters are used to pass values from the analysis to the script. They can be of three types: page or data table in the current analysis, action control, or data type. Page or data table in the current analysis allows the script to access a specific page or data table by name. Action control allows the script to be triggered by a user action, such as clicking a button or selecting a value from a list. Data type allows the script to accept a value of a specific data type, such as text string, integer, date, etc. Visualization is not a type of input parameter, but rather an object that can be accessed by the script using the Document.ActivePageReference.Visuals property.Reference:Spotfire Analyst Scripting,How to Get Values of the Input Parameters of a Data Function in TIBCO Spotfire Using IronPython Scripting
Which function category contains node navigation functions?
Node navigation functions are used to reference specific records or groups of records in a hierarchy or an axis. They are part of the OVER category of functions, which are used to group data in calculations.Some examples of node navigation functions are All(), Previous(), Next(), Parent(), and Intersect()12. The other function categories do not contain node navigation functions.Statistical functions are used to perform statistical tests and calculations, such as Corr(), TTest(), and Anova()3.Binning functions are used to create bins or groups of values, such as BinByCount(), BinByDateTime(), and BinBySize()4.Spatial functions are used to perform spatial calculations and operations, such as ST_Area(), ST_Contains(), and ST_Distance()5.Reference:1: Node navigation - TIBCO Software1,2: Using Node Navigation in Spotfire The Analytics Corner2,3: Statistical Functions - TIBCO Software,4: Binning Functions - TIBCO Software,5: Spatial Functions - TIBCO Software
Which namespace contains classes used to interact with visualizations in a document?
The Spotfire.Dxp.Application.Visuals namespace contains classes used to configure visualizations and text areas in a page1. These classes include the abstract base class Visualization, which represents a common base for all visualizations, and its derived classes, such as BarChart, BoxPlot, MapChart, ScatterPlot, etc. Each visualization class exposes properties and methods to access and modify the settings and data of the visualization, such as axes, colors, shapes, filters, markings, etc. The Spotfire.Dxp.Application.Visuals namespace also contains classes for text areas, which are used to display text, images, or HTML content on a page, and classes for various components of visualizations, such as axes, legends, reference lines, etc.Reference:
Spotfire.Dxp.Application.Visuals Namespace
Visualization Class
Spotfire Document Model Framework API Overview
Which one of the following can be inserted into a text area?
A text area is a component that can be added to a page in Spotfire to provide text, images, links, buttons, property controls, filters, and dynamic items1.A dynamic item is a small visualization that can display an aggregated view of some data, such as a calculated value, a sparkline, an icon, or a bullet graph2.A dynamic item can be inserted into a text area by using the Insert Dynamic Item option in the text area toolbar3. The other options are not valid items that can be inserted into a text area.A calculated column, a data table, and a custom expression are data-related concepts that can be used in Spotfire to create or manipulate data tables and columns4.A visualization is a graphical representation of data that can be added to a page as a separate component5.Reference:How to Use the Text Area,Dynamic Items - TIBCO Software,How to Insert a Dynamic Item,Data in Analysis - TIBCO Software,Visualizations - TIBCO Software