Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Does STATISTICA BASIC support graphics?

0
Posted

Does STATISTICA BASIC support graphics?

0

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

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123