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.
Hello
What is the way to prevent print ?
i tried ODS close but it didnt work
proc freq data=sashelp.cars nlevels;
ods exclude onewayfreqs;
ods output
nlevels= want
(keep = tablevar nlevels NNonMissLevels NMissLevels
rename = (tablevar=VAR_NAME nlevels=n_levels));
Run;
... View more
In Sas Viya, I have a text filter object with a Description field that points to a table. I want to insert a word into the object, and the table should select all rows with that word in the Description field. I used the advanced filter with a parameter in the text filter object, but I can't get the desired result.
... View more
Hello
Lets say I have list of column names that I am looking for .
I want to search these col names in SASHELP.CARS data set.
The problem that sometimes the var name I search doesnt exist in sashelp.cars .
Then, my task is - Find the best candidate var name that has highest matching to var name I am looking for.
For example:
For field CAR_Model best candidate is CAR
For field MSRP best candidate is MSRP (Here have full matching)
For field CarEngineSize best candidate is EngineSize
and so on
what is the way to do it please
The want data set will have 2 columns- var_search, var_best_candidate
proc contents data=sashelp.cars;
ods output variables=variables_List;
run;
Data Search_Fields;
input field $
Cylin
DriveTrain
CarEngineSize
Horsepower
InvoiceAmnt
Length
MPG_IN_City
MPG_IN_Highway
MSRP
Make
CAR_Model
Origin
CAR_Type
Weight
Wheelbase
;
Run;
... View more
Hello All,
I wanted to create a Cubic Spline Curve with a continuous variable on the x-axis and hazard ratio for the time to event variable on y-axis with 95% CI, I was trying to use proc phreg using the effect statement, but not sure about the code, could you please help me to do that?
Thank you,
... View more
Col1 Col2 1 1,5,4,3,2,6 2 21,3,2,1,5,15,17,3 3 1,2,3 4 4,3,2 Dear Friends, I have dataset like above, I would like to convert it like below. Can someone suggest me the easy way. Thanks in advance. Col1 Col2 1 1,2,3,4,5,6 2 1,2,3,3,5,15,17,21 3 1,2,3 4 2,3,4
... 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.