09-05-2024
Frank_Boekamp
Quartz | Level 8
Member since
02-24-2015
- 75 Posts
- 22 Likes Given
- 3 Solutions
- 13 Likes Received
-
Latest posts by Frank_Boekamp
Subject Views Posted 3713 01-15-2020 08:32 AM 3898 12-09-2019 06:12 AM 4686 12-04-2019 12:42 PM 4736 11-27-2019 09:39 AM 1764 09-16-2019 03:23 AM 1870 09-09-2019 03:47 AM 1166 05-01-2019 08:57 AM 1194 05-01-2019 05:21 AM 1533 04-30-2019 01:49 PM 1549 04-30-2019 01:12 PM -
Activity Feed for Frank_Boekamp
- Got a Like for Re: Sorting Data. 01-15-2020 10:58 AM
- Posted Re: Sorting Data on Developers. 01-15-2020 08:32 AM
- Got a Like for Re: Sorting Data. 01-08-2020 10:25 AM
- Posted Re: Sorting Data on Developers. 12-09-2019 06:12 AM
- Posted Re: How do I create an xmr control chart in VA 7.4 on SAS Visual Analytics. 12-04-2019 12:42 PM
- Liked Re: How do I create an xmr control chart in VA 7.4 for Noel88. 12-04-2019 12:41 PM
- Posted Re: How do I create an xmr control chart in VA 7.4 on SAS Visual Analytics. 11-27-2019 09:39 AM
- Liked CAS answers to 4 common data manipulation tasks – Part 4 – AGGREGATE for NicolasRobert. 11-18-2019 04:35 AM
- Liked CAS answers to 4 common data manipulation tasks – Part 2 – SORT for NicolasRobert. 11-18-2019 04:27 AM
- Posted Re: SAS VA 8.4 linking section on SAS Visual Analytics. 09-16-2019 03:23 AM
- Posted SAS VA 8.4 linking section on SAS Visual Analytics. 09-09-2019 03:47 AM
- Posted Re: Measure displayed in geo map using clustering in SAS VA 8.3.1 on SAS Visual Analytics. 05-01-2019 08:57 AM
- Posted Measure displayed in geo map using clustering in SAS VA 8.3.1 on SAS Visual Analytics. 05-01-2019 05:21 AM
- Posted Re: Error importing XML file with automap in SAS Viya on SAS Viya. 04-30-2019 01:49 PM
- Posted Error importing XML file with automap in SAS Viya on SAS Viya. 04-30-2019 01:12 PM
- Posted Re: Fontsize titles in VA 8.3.1 on SAS Visual Analytics. 03-28-2019 04:00 AM
- Posted Re: How to import report items from a different report in SAS VA 8.2 on SAS Visual Analytics. 03-27-2019 11:52 AM
- Posted Re: Import other Report section in the current VA 8.3 report on SAS Visual Analytics. 03-27-2019 11:49 AM
- Posted Fontsize titles in VA 8.3.1 on SAS Visual Analytics. 03-27-2019 11:45 AM
- Posted Re: SAS VA 8.3 problem with word wrap in Listtable on SAS Visual Analytics. 02-22-2019 08:10 AM
-
Posts I Liked
Subject Likes Author Latest Post 1 4 3 1 1 -
My Liked Posts
Subject Likes Posted 1 01-15-2020 08:32 AM 1 12-09-2019 06:12 AM 2 05-30-2017 03:28 AM 1 02-28-2017 09:47 AM 1 08-22-2016 06:17 AM -
My Library Contributions
Subject Likes Author Latest Post 0
01-29-2020
05:47 PM
Managed to work out a work around where I can calculate the mean and limits in excel and then add these to the graph as reference lines. Means while the data updates each month automatically I need to manually make any adjustments to the mean, UCL and LCL. Works as an interim solution till I find something better and gives the report visibility needed throughout the month
... View more
01-15-2020
08:32 AM
1 Like
Creating s sorted table in CAS seems to be possible using partioning functionality. You can order variables within a partition. So to create an ordered CAS table, you should create one (dummy) partition for the whole table.
/* Examples how to get an ordered CAS table */
cas;
caslib _all_ assign;
/* following code uses a 9.4 SAS dataset as input and creates a sorted table in CAS */
data work.unsorted;
group = "A";
w1 = 5; w2 = 6; output;
w1 = 3; w2 = 3; output;
w1 = 1; w2 = 2; output;
w1 = 3; w2 = 4; output;
run;
proc casutil
outcaslib="casuser";
load data= "unsorted" casout="sort1" replace partitionby=(group) orderby=(w1 w2) ;
run;
It's also possible to create a sorted CAS table based on a CAS table as input. This routine could replace a proc sort from 9.4:
/* Following code runs in CAS and sorts the columns in a CAS table */
/* A dummy group is added to put all data in the same partition */
data casuser.unsorted;
group = "A";
w1 = 5; w2 = 6; output;
w1 = 3; w2 = 3; output;
w1 = 1; w2 = 2; output;
w1 = 3; w2 = 4; output;
run;
data casuser.sort3 (partition=(group) orderby=(w1 w2));
set casuser.unsorted ;
run;
You can use this sorted dataset for subsequent datasteps. But: to use constructs like retain and lag() you still have to change the datastep code: you could add the datastep option / single=yes to force CAS to run the datastep single threaded or use some retain logic to deal with multi threading.
One thing that is not working like it should do: order variables in descending order like in following example:
https://documentation.sas.com/?docsetId=casref&docsetTarget=p12eiok32viouqn1huacr2d39nl0.htm&docsetVersion=1.0&locale=en
This example contains some syntax errors and is not sorting variable ch as it should do.
My own example to show this:
/* following code runs in CAS and should order column w2 descending within column w1 */
/* This is not working as expected: column w2 is not ordered descending within w1 */
data casuser.sort4 (partition=(group) orderby=(w1 DESCENDING w2));
set casuser.unsorted ;
run;
Why is this not working???
... View more
11-06-2019
04:25 PM
Why not use a regular Line Chart with two measures? Why use the dual?
... View more
09-16-2019
11:58 AM
The full context is that in the new design we remove the page navigation tabs when a page link with filters is taken. The goal was to avoid the confusion that arises when you have a filter link from Page 1 to Page 2, but the viewer user can still navigate to any page they want and even take additional links which is a state the breadcrumb can't really show and creates odd questions about what should happen if the same page is linked into twice. UX was concerned that removing the page navigation tabs after clicking a simple link that didn't have filters was overly restrictive to common cases like an author building a table of contents on the first page. The simplest fix to avoid this was to omit these simple links from being part of the breadcrumb system altogether which also helps in cases where the flow of the report may be non-linear. Sounds like the missing piece is that while it isn't necessary to lock a viewer into using the breadcrumb we should look at ways to still provide a navigational "go back" button that can function regardless of whether the breadcrumb is in use or whether the tabs are shown. Functionally I don't see any issues, so it mostly comes down to finding a stable position for it in the UI that doesn't conflict with the undo/redo buttons or the new edit/view toggle. I'll pass it along to the rest of the team and see where it goes.
... View more
05-01-2019
08:57 AM
Hi Falko,
That's clear to me.
I hope that this will be realized soon because it will make the geo map with clustering a lot more usable.
Cheers, Frank
... View more
04-30-2019
01:49 PM
Reading and writing XML is working fine using next code;
filename xml_in filesrvc folderpath='/Users/myname/test/' filename='xml_in.xml';
filename xml_out filesrvc folderpath='/Users/myname/test/' filename='xml_out.xml';
data test;
length line $ 32676;;
infile xml_in lrecl=32767;
file xml_out_out;
input line;
put _infile_;
run;
Using complete pathname, filename, and file extension in a filename statement seems not to work in SAS Viya.
So I'm puzzled what to do with the libname statement with the automap option.
libname xml_in xmlv2 xmlfileref=xml_in automap=replace xmlmap=xx_map;
... View more
03-28-2019
08:55 AM
In 8.3, we have a new feature called object templates. These enable you to save the visual settings for an object as a template. After you save a template, you can use it in any report. Object templates do not contain the data assignments for the object, so you will need to set those up manually.
There are also custom graph templates in 8.3, for graphs that you create in the Graph Builder. You can import those into any report.
Including data in shared objects is something the dev team is looking into for the future.
Sam
... View more
03-28-2019
06:49 AM
Hi there, I asked the same question some time ago, it isn't possible at the moment. https://communities.sas.com/t5/SAS-Visual-Analytics/Copy-report-page-to-another-report-in-VA-8-3/m-p/534427
... View more
02-22-2019
09:55 AM
I could not reproduce this issue, but I would be interested in the solution. Do you know what they did to fix it?
... View more
02-19-2019
10:47 AM
Thanks Sam
... View more
02-04-2019
08:55 AM
Hello Mahenda,
The Designer and Explorer are a single interface in VA 8.1 and later, so forecasting is the same as any other report object there.
Sam
... View more
12-08-2017
04:01 PM
Was a solution found for this? We are using VA 7.4 and we are trying to solve this exact same issue. Any ideas would be greatly appreciated. Thanks, Ricky
... View more
08-16-2017
03:49 AM
But, is there any other way to this? because not all the higher management likes to right click and deselect each time.. can we create another gauge and make an interaction which can bring back to global level when we click on it.. is it possible?
... View more
03-06-2017
03:34 AM
Hi
Yes it is a bit complex but here is how you can do that:
You can create a parameter from the month item assigned in your control and then use that date parameter value to filter the first chart.
(please check following link on how to use parameters with date: https://communities.sas.com/t5/SAS-Communities-Library/Date-parameters-in-SAS-Visual-Analytics/ta-p/233338)
Once you have the parameter Use the Filters tab to create the follwing filter :
And then you can set up simple interaction between the first and the second chart.
So there is no derived interaction between the month control and the second chart and it is only filtered by the values passed from the first chart.
Regards
... View more