Questions tagged [sas-visual-analytics]

Use this tag for questions about building reports and data visualisations using SAS Visual Analytics. SAS VA is a web based reporting and data visualisation product by SAS.

25 questions
0
votes
2 answers

Modifying a Date Variable

I want to return the month from my date variable in SAS Visual Analytics. I did calculated item --> month('Date_Variable') and it returned numbers 1-12, but I want it to return the month name.
hauger2
  • 35
  • 4
0
votes
0 answers

Blank homepage SAS Visual Analytics 7.5

quick question. How comes my client receives an empty homepage after he logs in on SAS Visual Analytics 7.5? Where is the Welcome field, where is the favorite field? Where are the recent opened files? These are only available when I log in with my…
ManCity10
  • 119
  • 1
  • 12
0
votes
0 answers

Total Sum of column in SAS Data Studio

i'm new to SAS Visual Analytics and SAS Data Studio and I want to have a total sum of a column in every row. My table looks like this... ID/Amount 1/10 2/20 3/30 And my final table should be like…
user8504877
0
votes
2 answers

Cant I use dates as axes in a scatter plot in SAS VA?

In Enterprise Guide, I draw scatter plots with creation and closing date of issues to detect when backloggs occur and when they are resolved: (The straight lines in the graph are batch interventions, like closing a set of issues that were handled…
Dirk Horsten
  • 3,753
  • 4
  • 20
  • 37
0
votes
1 answer

Grouping into intervals

I want to create intervals under my grouping bins in SAS Visual Analysis. I Googled and found this pertinent info in the relevant section of the…
Excaliburst
  • 143
  • 1
  • 4
  • 15
0
votes
0 answers

Is there an alternative solution to obatin a network diagram visualization?

I read in the sas documentation that it isn't allowed to export a network diagram visualization. See links below: SAS Limitation SAS export visualization Is there another way to accomplish a similar result in SAS? I mean, is there a way to obtain a…
johnny_kb
  • 694
  • 9
  • 27
0
votes
0 answers

Frequency time series on SAS Visual Analytics requires compress count by month

I have two columns, one as Acutal_date and another as Incident_ID Actual_date Incident_ID 12/02/2014 W23421 02/12/2015 W234234 I want to create a simple time series plot in SAS VA that displays count by Month-Year. For example,…
KubiK888
  • 4,377
  • 14
  • 61
  • 115
0
votes
2 answers

Separated by the Meridian polygons in geomaps SAS VA (SAS GRAPH)

I'm trying create custom maps to Russia in Visual Analytics. So, I've faced with a trouble of "separated region". You can see a visualization of this problem by using Dal'nevostochnyy (DVFO) region from MAPSGFK library. I tried to fix the scatter…
Sanek Zhitnik
  • 716
  • 1
  • 10
  • 25
0
votes
1 answer

Export .html from SAS Visual Analytics

How can I export graphs created in Visual Analytics as .html? From the export menus only .png and .pdf is available, but I need the ability to do drill downs directly from the web browser in the same manner as files exported from Enterprise Guide.
chriotte
  • 39
  • 5
-1
votes
1 answer

How to make a 100% stacked chart using the following 2 charts in SAS?

This is the code: proc sgplot data=work.simple pctlevel=group; title 'Group Y Portfolio(2007/2008/2009/2010)'; vbar Companies / group=Year stat=pct seglabel groupdisplay=stack ; run; proc sgplot data=work.simple pctlevel=group; title 'Group…
1
2