Does STATISTICA BASIC support graphics?
STATISTICA BASIC is a powerful graphics development tool. It offers access to virtually all STATISTICA graphics procedures. Creating even complex graphs with STATISTICA BASIC is surprisingly easy. A Wizard is provided to speed up entry of all commands (including all graphics functions). For example, only one line of code is all that is necessary to create a graph (e.g., from a particular combination of values in the data file or any data computed in your program). The following (complete) STATISTICA BASIC program will create a scatterplot from all cases (NCases) of the first two variables (v1 and v2) in the current dataset. NewGraph (SCATTERPLOT, ‘Title’, ‘x’, ‘y’, NCases, v1, v2); The following modification of that program will label the axes of the graph with the names of the respective variables (these names are placed in string variables x$ and y$, then used as axis labels). x$ := VarName(1); y$ := VarName(2); NewGraph (SCATTERPLOT, ‘Title’, x$, y$, NCases, v1, v2); Applications. T