A Human Generated Introduction to Generative AI, Part 1: Synthetic Data Generation
Recent Library Articles
Recently in the SAS Community Library: In the first of two posts on applications of generative AI, SAS' @JThompson reveals the role of generating synthetic data.
Below you will notice that _TYPE_ and _FREQ_ have lost the underscore. I know that PROC REPORT has special processing for header strings that begin and end with dash, underscore and some others I don't remember. Can I get PROC REPORT to NOT do that.
Update:
Note: The use of expanding characters is supported only in LISTING destinations. Therefore, PROC REPORT simply removes the expanding characters when the output is directed to any other destination. Refer to Understanding ODS Destinations in SAS Output Delivery System: User’s Guide for more information.
I guess the answer is NO.
proc summary data=sashelp.class missing chartype descendtypes;;
class age sex name / mlf;
ways 1;
output out=test;
run;
ods excel file='.\test.xlsx';
proc report data=test;
columns _all_;
define _all_ / display;
format _type_ $char3.;
run;
ods excel close;
... View more
Hi. I never got this warning before. I know this is not a license renewal warning. What is this and what do I need to do? Thanks, WARNING: The Base SAS Software product with which RESULTS is associated will be expiring soon, and is WARNING: currently in warning mode to indicate this upcoming expiration. Please run PROC SETINIT to WARNING: obtain more information on your warning period.
... View more
Using SAS Studio Datapool issue Detail: Create a SAS data sets with a few variables containing nulls. Export to excel download to local drive explore the nulls with =isblank(T2) result is FALSE click on cell T2 and then in the box displaying null value then click in any other cell. NOTE: did not touch the keyboard. ie did not change the value of cell T2 result changes to TRUE The result is always TRUE when running the same process not in SAS Studio. Question: What settings need to change in SAS Studio to make SAS / excel behave when using SAS / Excel outside SAS Studio ? PC SAS and SAS in DCJ environment pose no issue. The issue exists only in SAS Studio I did try three reruns of the code with each change 1. COMPRESS fnt 2. STRIP fnt 3. OPTIONS MISSING=''; All outputs had the same result of a 'fake' blank in the cell T2 NOTE: Using notdp
... View more
Hello
Lets say I have 2 SAS sessions that are open.
Lets say that in one sas session I update a permanent data set that is saved in a permanent library.
Lets say that in second sas session I am using this permanent data set (So I am using this data set but I dont update this data set).
My question-
Is it possible to update data set in one sas session and use this dats set in another sas session (Run both sas sessions in same time)?
... View more
Hello
Lets say I have 10 numbers and I want to choose 6 of them .
There are 210 possible combinations of choose 6 numbers from 10.(select a subset of 6 elements from a set of 10).
I want to get the all 210 combinations
So in want data set will have columns: serial X1 X2 X3 X4 X5 X6
what is the way to do it please?
%let numbers=2,4,16,21,22,24,27,31,32,34;
Data want;
input serial X1 X2 X3 X4 X5 X6;
cards;
1 4 16 21 22 24
2 16 21 22 24 27
and so on
;
Run;
... View more
Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.