BookmarkSubscribeRSS Feed
upadhi
Quartz | Level 8

1. I have a requirement to build parabolic graph. Can we do it using SAS VA or STP?

2. Requirement is user enters the parameter and on the spot it runs a an STP and from the output the graph is populated.

1 REPLY 1
ballardw
Super User

@upadhi wrote:

1. I have a requirement to build parabolic graph. Can we do it using SAS VA or STP?

2. Requirement is user enters the parameter and on the spot it runs a an STP and from the output the graph is populated.


And what parameter(s) would that be?

 

Generally you would build a data set using the parameter(s) and graph that.

A very basic parabola data set using y = x*x

data work.parabola;
   do x= -10 to 10 by .1;
      y = x*x;
      output;
   end;
run;

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 501 views
  • 0 likes
  • 2 in conversation