Recently in the SAS Community Library: Have you received a promotional email that for some reason did not render properly? Some content was missing? SAS' @BrianRowland shows you a feature in SAS Customer Intelligence 360 that is very easy to set up and use to provide alternative web viewing.
HI y'all, I know that there is a way to get either or both of PROC MEANS or PROC SUMMARY to give me a simple count of a character variable by a couple of CLASS variables. I am pretty sure that before PROC MEANS and PROC SUMMARY basically became one and the same, that SUMMARY supported that, while MEANS did not. but so far, my attempts to get this elusive number have been unsuccessful. Does anyone know how to do this? I really do not want to resort to DATA step or PROC SQL. thanks, Donna
... View more
We use Git and GitLab for all our code (Python, R). In order to make more intensive use of version control for SAS code and projects that were created with Enterprise Guide, the self-written SAS code would have to be stored in external files. SEG normally saves the code in the EGP file. This means that it is hidden in a binary file and not visible to Git. Enterprise Guide offers the option of saving a code element individually externally. A relative path to the project file can be used. This option is good, but especially in large EG projects it is tedious to manually save each individual code element externally and to ensure that no code element is stored internally. For this reason, we are looking for a script or similar that can support us in this work. Has anyone already done something similar?
... View more
Hi everyone,
Could you please confirm if these are the right steps to add a user (including an LDAP user) to connect to SAS Enterprise Guide ?
We're using SAS servers on Linux. First, we create a user account on the metadata server, then on the compute servers. After that, we set up the user's profile in SAS Management Console, assign the necessary roles and groups, and the connection to the SASApp server in SAS Enterprise Guide should work. The user should then be able to see the available libraries.
Thank you.
... View more
I want to change proc lifetest y axis. It seems I can use macros to change it. %ProvideSurvivalMacros %let yOptions = label="Survival" linearopts=(viewmin=0.2 viewmax=1 tickvaluelist=(0 .2 .4 .6 .8 1.0)); %CompileSurvivalTemplates However, I don’t have permission to compile the template in SASUSER .templat. Is there a way to use an updated ‘Stat.Lifetest.Graphics.ProductLimitSurvival’ in work.templat?
... View more
using below dataset and get below output data sc; input group $ id ; datalines; A 1 A 1 A 0 A 1 A 1 B 2 B 0 B 2 B 2 C 3 C 0 C 3 C 3 ; run; /*output*/ Name id A 1 A 1 A 0 A 0 A 0 B 2 B 0 B 0 B 0 C 3 C 0 C 0 C 0
... View more