Dear Community,
While trying to compute some step chart, I came across to the code listed below found in the SAS help documentation.
title "Stock Trend for IBM"; proc sgplot data=sashelp.stocks (where=(date >= "01jan2004"d and stock = "IBM")); step x=date y=close; run;
The hand's drawing is the plot I would like to compute: the challenge appears to the visual aspect as the attribute on the y-axis will be ranked by order/ severity ascendant.
Please advise.
Thanks in advance.
S
It may be time to clarify the question. Do you have a dataset you want to plot? If so, what does the data look like. You can follow instructions from this link: https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat... to make datastep code that can be pasted here for the variables of interest.
Or are you trying to get values from an existing graph?
You may be looking for the annotate feature to draw lines at points decided by values in the data. BUT you will have to provide the code on how to select a point and then draw the horizontal and vertical unless you want the lines at each corner.
If you only want your values of interest then you would suppress the default axis statements and supply your values which might be easiest with the annotate.
It may be time to clarify the question. Do you have a dataset you want to plot? If so, what does the data look like. You can follow instructions from this link: https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat... to make datastep code that can be pasted here for the variables of interest.
Or are you trying to get values from an existing graph?
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.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.